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:
Andres Noetzli
2022-03-30 21:09:03 -07:00
committed by GitHub
parent 3ebf121438
commit c93de62d8b
72 changed files with 892 additions and 882 deletions

View File

@@ -13,9 +13,9 @@
* A simple demonstration of reasoning about sequences with cvc5 via C++ API.
*/
import static io.github.cvc5.api.Kind.*;
import static io.github.cvc5.Kind.*;
import io.github.cvc5.api.*;
import io.github.cvc5.*;
public class Sequences
{