Skip to content

Commit 37c7246

Browse files
committed
versions
1 parent 0276fc5 commit 37c7246

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# The Princess Theorem Prover
22

3+
Princess is a theorem prover (aka SMT Solver) for Presburger
4+
arithmetic with uninterpreted predicates, written entirely in <a
5+
href="http://www.scala-lang.org/">Scala</a>. Princess can reason
6+
about problems in integer arithmetic, augmented with predicates that
7+
can be axiomatised arbitrarily. Such problems can contain arbitrary
8+
quantifiers to express that some formula is supposed to hold for all
9+
or for some integers. Princess also contains theory modules for, among
10+
others, non-linear arithmetic, rationals, bit-vectors, arrays, heaps,
11+
algebraic data-types, strings.
12+
313
More information about Princess can be found on the main webpage,
414
https://philipp.ruemmer.org/princess.shtml

build.sbt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lazy val commonSettings = Seq(
33
name := "Princess",
44
organization := "uuverifiers",
5-
version := "2022-11-03",
5+
version := "2023-04-07",
66
homepage := Some(url("https://philipp.ruemmer.org/princess.shtml")),
77
licenses := Seq("BSD-3-Clause" -> url("https://opensource.org/licenses/BSD-3-Clause")),
88
scmInfo := Some(ScmInfo(
@@ -38,6 +38,12 @@ lazy val commonSettings = Seq(
3838
name = "Peter Baumgartner",
3939
email = "[email protected]",
4040
url = url("http://users.cecs.anu.edu.au/~baumgart/")
41+
),
42+
Developer(
43+
id = "amanda.stjerna",
44+
name = "Amanda Stjerna",
45+
email = "[email protected]",
46+
url = url("https://amandastjerna.se/")
4147
)
4248
),
4349
description := "Princess is a theorem prover (aka SMT Solver) for Presburger arithmetic, uninterpreted predicates, and various other theories.",

src/ap/CmdlMain.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import ap.util.{Debug, Seqs, Timeout}
5050

5151
object CmdlMain {
5252

53-
val version = "2022-11-03"
53+
val version = "2023-04-07"
5454

5555
/**
5656
* Flag to enable stack traces being fully printed, for problems
@@ -69,9 +69,9 @@ object CmdlMain {
6969
println("(" + version + ")")
7070
println
7171
println("(c) Philipp Rümmer, 2009-2023")
72-
println("Contributors: Angelo Brillout, Peter Backeman, Peter Baumgartner, Zafer Esen.")
72+
println("Contributors: Peter Backeman, Peter Baumgartner, Angelo Brillout, Zafer Esen,")
73+
println(" Amanda Stjerna.")
7374
println("Free software under BSD-3-Clause.")
74-
println("Bug reports to [email protected]")
7575
println
7676
println("For more information, visit http://www.philipp.ruemmer.org/princess.shtml")
7777
}

0 commit comments

Comments
 (0)