Skip to content

Commit 9caa0b5

Browse files
zgrannanregb
authored andcommitted
Fix or
1 parent b9e9f4f commit 9caa0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

0 commit comments

Comments
 (0)