mirror of
https://github.com/AdaCore/cvc5.git
synced 2026-02-12 12:32:16 -08:00
Move Java package to io.github.cvc5 (#8469)
Previously, we were using io.github.cvc5.api to mirror the C++ namespace that the API was in. The namespace of the C++ API changed to simply cvc5 and so this commit updates the Java package accordingly.
This commit is contained in:
@@ -13,9 +13,9 @@
|
||||
* An example of accessing cvc5's statistics using the Java API.
|
||||
*/
|
||||
|
||||
import static io.github.cvc5.api.Kind.*;
|
||||
import static io.github.cvc5.Kind.*;
|
||||
|
||||
import io.github.cvc5.api.*;
|
||||
import io.github.cvc5.*;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@@ -27,7 +27,7 @@ public class Statistics
|
||||
{
|
||||
// Get the statistics from the `Solver` and iterate over them. The
|
||||
// `Statistics` class implements the `Iterable<Pair<String, Stat>>` interface.
|
||||
io.github.cvc5.api.Statistics stats = solver.getStatistics();
|
||||
io.github.cvc5.Statistics stats = solver.getStatistics();
|
||||
// short version
|
||||
System.out.println("Short version:");
|
||||
System.out.println(stats);
|
||||
|
||||
Reference in New Issue
Block a user