Default packages
Alire installation and checkup / build (ubuntu-20.04) (push) Failing after 4m3s

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-06-14 22:37:02 +02:00
parent cdf1ca655d
commit 4af251007f
3 changed files with 16 additions and 2 deletions
+12
View File
@@ -1,3 +1,6 @@
generic
type Meta is private;
type H is digits <>;
package Grl.Coordinates with
SPARK_Mode => On
is
@@ -92,6 +95,15 @@ is
end case;
end record;
-- ------------------------ --
-- Location Type Definition --
-- ------------------------ --
type Location is record
Where : Coordinate;
Heuristic : H;
Data : Meta;
end record;
-- ---------------------------- --
-- Converter / helper functions --
-- ---------------------------- --
+3
View File
@@ -0,0 +1,3 @@
with Grl.Coordinates;
package Grl.Default is new Grl.Coordinates (Meta => Natural, H => Float);
-1
View File
@@ -1,3 +1,2 @@
package Grl is
end Grl;