-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing bug in numeric comparator of recodex token judge.
- Loading branch information
Martin Krulis
committed
Apr 5, 2019
1 parent
1a043b6
commit 362bda7
Showing
6 changed files
with
16 additions
and
8 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
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,4 @@ | ||
some string tokens | ||
followed by numeric tokens 42 1000000000 +54 -19 0012 | ||
and some float tokens 1.0 1.1 0.001 -0.0002 0.00003 | ||
0 |
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,5 +1,7 @@ | ||
0 | ||
-2: followed by numeric tokens 42 1000000000 +54 -19 0012 | ||
+2: followed by numeric tokens 42 +1000000000 0054 -19.0 12 | ||
-3: and some float tokens 1.0 1.1 0.001 -0.0002 0.00003 | ||
+3: and some float tokens +1.0 1.100 1e-03 -0.0002 0.000031 | ||
0 | ||
-2: followed by numeric tokens 42 1000000000 +54 -19 0012 | ||
+2: followed by numeric tokens 42 +1000000000 0054 -19.0 12 | ||
-3: and some float tokens 1.0 1.1 0.001 -0.0002 0.00003 | ||
+3: and some float tokens +1.0 1.100 1e-03 -0.0002 0.000031 | ||
-4: 0 | ||
+4: 0.00 |
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,4 @@ | ||
some string tokens | ||
followed by numeric tokens 42 +1000000000 0054 -19.0 12 | ||
and some float tokens +1.0 1.100 1e-03 -0.0002 0.000031 | ||
0.00 |