Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bb010g/cs301-pr1
https://github.com/bb010g/cs301-pr1
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bb010g/cs301-pr1
- Owner: bb010g
- Created: 2016-10-03T22:56:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-12T21:40:08.000Z (about 8 years ago)
- Last Synced: 2024-10-31T15:12:46.565Z (2 months ago)
- Language: Java
- Size: 153 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Usage Instructions
===To run a program, you can use `./run` or the jar distribution.
`./run` is the simpler option:
To use the class PolyMultP1, simply run `./run polymult`.
To use the class FactorP1, simply run `./run factor`.
These will be slow, however, as they are calling `./gradlew run` behind the
scenes and have the overhead of spinning up Gradle & (re)compiling if necessary.To avoid this slowdown, you can use the distribution archive & included jars.
Simply unpack gbuild/distributions/pr1-1.0.tar to your desired location,
`cd` in, and run the script at `./bin/pr1` (appending `.bat` if on Windows).
To use the class PolyMultP1, give the argument 'polymult'.
To use the class FactorP1, give the argument 'factor'.If you wish to run tests and view the results, run
`./gradlew test; ./gradlew jacocoTestReport`. Java 8 is _required_ to run tests.
Test results will be available in `gbuild/reports`.