Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve track vars in unsat cores #105

Merged
merged 4 commits into from
Apr 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Upgrade version to 0.5.1
  • Loading branch information
Saloed committed Apr 27, 2023
commit 3956e363d42143154663de33a64f7a5726b8fb39
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ repositories {
}

// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.1")
// z3 solver
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.1")
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "org.ksmt"
version = "0.5.0"
version = "0.5.1"

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ repositories {
```kotlin
dependencies {
// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.1")
}
```

#### 3. Add one or more SMT solver dependencies:
```kotlin
dependencies {
// z3
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.1")
// bitwuzla
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.5.1")
}
```
SMT solver specific packages are provided with solver native binaries.
Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ repositories {

dependencies {
// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.5.1")
// z3 solver
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.0")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.5.1")
}

java {
Expand Down