Created
January 26, 2018 19:14
-
-
Save sonOfRa/e128e06dbe16bb31bdf7e377eefe5772 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| if (options.get("m") != this.memoryCost) { | |
| return true; | |
| } | |
| if (options.get("p") != this.parallelism) { | |
| return true; | |
| } | |
| if (options.get("t") != this.timeCost) { | |
| return true; | |
| } | |
| return false; |
This file contains hidden or 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
| return options.get("m") != this.memoryCost | |
| || options.get("p") != this.parallelism | |
| || options.get("t") != this.timeCost; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment