summaryrefslogtreecommitdiff
path: root/bubble.ads
diff options
context:
space:
mode:
Diffstat (limited to 'bubble.ads')
-rw-r--r--bubble.ads17
1 files changed, 0 insertions, 17 deletions
diff --git a/bubble.ads b/bubble.ads
deleted file mode 100644
index 529c5c6..0000000
--- a/bubble.ads
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-generic
-
- type Index_T is (<>);
- type Element_T is private;
- type Array_T is array (Index_T range <>) of Element_T;
-
- with function ">"(X, Y : in Element_T) return Boolean is <>;
-
-package Bubble is
-
- procedure Sort(Arr : in out Array_T);
- procedure Optimized(Arr : in out Array_T);
-
-end Bubble;
-