src/HOL/SPARK/Examples/Gcd/Gcd.adb
author wenzelm
Tue, 07 Jun 2022 19:15:08 +0200
changeset 75536 7cdeed5dc96d
parent 41561 d1318f3c86ba
permissions -rw-r--r--
more robust treatment of rsync on macOS (see also 96fb1f9a4042);

package body Greatest_Common_Divisor
is

   procedure G_C_D(M, N: in Natural; G: out Natural)
   is
      C, D, R: Integer;
   begin
      C := M; D := N;
      while D /= 0 loop
         --# assert C >= 0 and D > 0 and Gcd(C, D) = Gcd(M, N);
         R := C rem D;
         C := D; D := R;
      end loop;
      G := C;
   end G_C_D;

end Greatest_Common_Divisor;