Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 638 Bytes

File metadata and controls

24 lines (19 loc) · 638 Bytes

Getting Started

Algorithm Arena is a plain Gradle/Java 21 project (no Spring Boot).

Build

./gradlew build

Run the sorting arena benchmark

./gradlew run -PmainClass=com.example.arena.sorting.SortingComparison

or compile and run directly with java -cp build/classes/java/main com.example.arena.sorting.SortingComparison.

Run the test suite

./gradlew test

Test reports are written to build/reports/tests/test/index.html.

Reference Documentation