-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed bug in jar converter w.r.t. reading single class file (an NPE) …
…and a classpath parameter was missing for looking up parent classes in the hierarchy
- Loading branch information
1 parent
91e71a5
commit e3976ab
Showing
4 changed files
with
27 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module TestMe | ||
|
||
import IO; | ||
import util::Benchmark; | ||
import util::Math; | ||
|
||
void main() { | ||
results = for (i <- [2,3,4,5]) { | ||
println("2^<i> chains"); | ||
append cpuTimeOf(() { | ||
R = {<j, j+1> | j <- [0..toInt(pow(10,i))], j % 100 != 0}; | ||
R+; | ||
}); | ||
} | ||
|
||
iprintln(results); | ||
} |
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