forked from Bears-R-Us/arkouda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Sort comparators for Chapel 2.2 (Bears-R-Us#3750)
* update comparators for Chapel 2.2 Signed-off-by: Jade Abraham <jade.abraham@hpe.com> * fix makefile for docs Signed-off-by: Jade Abraham <jade.abraham@hpe.com> * remove gitignores Signed-off-by: Jade Abraham <jade.abraham@hpe.com> * fix missing * Signed-off-by: Jade Abraham <jade.abraham@hpe.com> * avoid compat module issues Signed-off-by: Jade Abraham <jade.abraham@hpe.com> --------- Signed-off-by: Jade Abraham <jade.abraham@hpe.com>
- Loading branch information
1 parent
906bdb2
commit 4db3469
Showing
11 changed files
with
51 additions
and
20 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module ArkoudaSortCompat { | ||
public use Sort; | ||
|
||
interface keyComparator {} | ||
interface keyPartComparator {} | ||
interface relativeComparator {} | ||
|
||
module keyPartStatus { | ||
proc pre param do return -1; | ||
proc returned param do return 0; | ||
proc post param do return 1; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module ArkoudaSortCompat { | ||
public use Sort; | ||
|
||
interface keyComparator {} | ||
interface keyPartComparator {} | ||
interface relativeComparator {} | ||
|
||
module keyPartStatus { | ||
proc pre param do return -1; | ||
proc returned param do return 0; | ||
proc post param do return 1; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module ArkoudaSortCompat { | ||
public use Sort; | ||
} |