-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No space before ; ; at the end of every top-level statement
- Loading branch information
1 parent
7a33910
commit 891b22f
Showing
56 changed files
with
938 additions
and
955 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
signature ex_incrementLib = | ||
sig | ||
|
||
include Abbrev ; | ||
include Abbrev; | ||
|
||
val generate_bigger_inc : term -> int -> term ; | ||
val benchmark : unit -> unit ; | ||
val generate_bigger_inc : term -> int -> term; | ||
val benchmark : unit -> unit; | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
open ex_incrementLib ; | ||
open ex_incrementLib; | ||
|
||
val _ = benchmark () ; | ||
val _ = benchmark (); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
signature ex_jump_chainLib = sig | ||
|
||
val benchmark_one_step : unit -> unit ; | ||
val benchmark_one_step : unit -> unit; | ||
|
||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
open ex_jump_chainLib ; | ||
open ex_jump_chainLib; | ||
|
||
val _ = benchmark_one_step () ; | ||
val _ = benchmark_one_step (); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
signature ex_mem_incrLib = | ||
sig | ||
|
||
include Abbrev ; | ||
include Abbrev; | ||
|
||
val generate_bigger_inc : term -> int -> term ; | ||
val benchmark : unit -> unit ; | ||
val generate_bigger_inc : term -> int -> term; | ||
val benchmark : unit -> unit; | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
open ex_mem_incrLib ; | ||
open ex_mem_incrLib; | ||
|
||
val _ = benchmark () ; | ||
val _ = benchmark (); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
signature ex_sum_listLib = sig | ||
|
||
val benchmark_one_step : unit -> unit ; | ||
val benchmark_one_step : unit -> unit; | ||
|
||
|
||
end |
Oops, something went wrong.