Skip to content

Commit 174fc98

Browse files
committed
Merge branch 'master'
2 parents c2c2ebb + 7654d63 commit 174fc98

File tree

7 files changed

+8
-13
lines changed

7 files changed

+8
-13
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ javaOptions in IntegrationTest ++= Seq("-Xss128M")
88

99
fork in IntegrationTest := true
1010

11-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test,it"
11+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-RC3" % "test"
1212

1313
logBuffered in IntegrationTest := false
1414

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.8
1+
sbt.version=1.3.0

project/plugins.sbt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
2-
3-
// avoids warning from sbt-git, see https://github.com/sbt/sbt-git#known-issues
4-
libraryDependencies += "org.slf4j" % "slf4j-nop" % "1.7.21"
5-
6-
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")

src/main/scala/smtlib/theories/Constructors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ object Constructors {
7575
}
7676
}
7777

78-
def or(t1: Term, t2: Term, ts: Term*): Term = and(t1 +: t2 +: ts)
78+
def or(t1: Term, t2: Term, ts: Term*): Term = or(t1 +: t2 +: ts)
7979
def or(ts: Seq[Term]): Term = {
8080
val flat = ts.flatMap{
8181
case Or(es@_*) => es

src/main/scala/smtlib/trees/TreeTransformer.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,13 +328,13 @@ abstract class SimpleTreeTransformer extends PrePostTreeTransformer {
328328
final def transform(term: Term): Term = transform(term, ())._1
329329
final def transform(sort: Sort): Sort = transform(sort, ())._1
330330

331-
override final def transform(id: Identifier, c: C): (Identifier, R) = transform(id, c)
331+
override final def transform(id: Identifier, c: C): (Identifier, R) = super.transform(id, c)
332332
final def transform(id: Identifier): Identifier = transform(id, ())._1
333333

334-
override final def transform(varBinding: VarBinding, c: C): (VarBinding, R) = transform(varBinding, c)
334+
override final def transform(varBinding: VarBinding, c: C): (VarBinding, R) = super.transform(varBinding, c)
335335
final def transform(varBinding: VarBinding): VarBinding = transform(varBinding, ())._1
336336

337-
override final def transform(sortedVar: SortedVar, c: C): (SortedVar, R) = transform(sortedVar, c)
337+
override final def transform(sortedVar: SortedVar, c: C): (SortedVar, R) = super.transform(sortedVar, c)
338338
final def transform(sortedVar: SortedVar): SortedVar = transform(sortedVar, ())._1
339339

340340
}

src/main/scala/smtlib/trees/Trees.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ object Terms {
113113
sealed trait Constant extends Term with AttributeValue
114114

115115
/*
116-
* Literal do not necessarly have an associated expected meaning (SNumeral as an
116+
* Literal do not necessarily have an associated expected meaning (SNumeral as an
117117
* integer or SBinary as a 2-complement integer). They are just syntactic units,
118118
* and each local theory gives them a semantics.
119119
*

src/test/scala/smtlib/parser/CommandsResponsesParserTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ class CommandsResponsesParserTests extends FunSuite {
343343
/*
344344
* TODO: the standard requires at least one value, currently we return empty list
345345
*/
346-
ignore("get-value response must contains at least one valuation pair") {
346+
ignore("get-value response must contain at least one valuation pair") {
347347
intercept[UnexpectedTokenException] {
348348
Parser.fromString("()").parseGetValueResponse
349349
}

0 commit comments

Comments
 (0)