move folders around
This commit is contained in:
parent
4b0b0186f2
commit
ab5bee5594
4 changed files with 5 additions and 5 deletions
|
@ -3,16 +3,16 @@ with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
|
||||||
|
|
||||||
package Module is
|
package Module is
|
||||||
|
|
||||||
|
function gcd(a : Natural; b : Natural) return Natural;
|
||||||
|
|
||||||
|
function factorial(n : Natural) return Natural;
|
||||||
|
|
||||||
type Result is record
|
type Result is record
|
||||||
resultExists : Boolean;
|
resultExists : Boolean;
|
||||||
n : Integer;
|
n : Integer;
|
||||||
m : Integer;
|
m : Integer;
|
||||||
end record;
|
end record;
|
||||||
|
|
||||||
function factorial(n : Natural) return Natural;
|
|
||||||
|
|
||||||
function gcd(a : Natural; b : Natural) return Natural;
|
|
||||||
|
|
||||||
function diophantine(a : Integer; b : Integer; c : Integer) return Result;
|
function diophantine(a : Integer; b : Integer; c : Integer) return Result;
|
||||||
|
|
||||||
end Module;
|
end Module;
|
||||||
|
|
|
@ -3,7 +3,7 @@ project Zad2 is
|
||||||
Impl : Impl_Type := external ("impl", "iter");
|
Impl : Impl_Type := external ("impl", "iter");
|
||||||
|
|
||||||
for Main use ("main");
|
for Main use ("main");
|
||||||
for Source_Dirs use ("src", "src/" & Impl);
|
for Source_Dirs use ("src", Impl);
|
||||||
for Object_Dir use "target";
|
for Object_Dir use "target";
|
||||||
|
|
||||||
end Zad2;
|
end Zad2;
|
||||||
|
|
Loading…
Reference in a new issue