(***********************************************************************) (* *) (* OCaml library from the book ``Apprendre à programmer avec OCaml'' *) (* *) (* Sylvain Conchon and Jean-Christophe Filliâtre *) (* Université Paris Sud *) (* *) (* Copyright 2014 Université Paris Sud. All rights reserved. This *) (* file is distributed under the terms of the GNU Library General *) (* Public License, with the same special exception on linking as the *) (* OCaml library. See http://caml.inria.fr/ocaml/license.fr.html *) (* *) (***********************************************************************) (* Programme 79 page 327 Algorithme d'Euclide étendu *) let rec extended_gcd x y = if y = 0 then (1, 0, x) else let q = x / y in let (u, v, g) = extended_gcd y (x - q * y) in (v, u - q * v, g)
This document was generated using caml2html