Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ianamason committed Oct 26, 2018
1 parent 35ffc33 commit 615d82d
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 48 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,14 @@ YICES_TOP_DIR=$(shell pwd)
# - P should still work (without recompliling) with libyices 2.0.1
# - P should not work anymore with libyices 2.1.0 or 3.0.0
#
# N.B There are also an occurrences in:
# src/include/yices.h
# doc/manual/manual.tex
# doc/sphinx/source/conf.py
#
MAJOR = 2
MINOR = 6
PATCH_LEVEL = 0
PATCH_LEVEL = 1

YICES_VERSION = $(MAJOR).$(MINOR).$(PATCH_LEVEL)

Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
yices2 (2.6.0-1) unstable; urgency=medium
yices2 (2.6.1-1) unstable; urgency=medium

* Initial release. (Closes: #864786)

Expand Down
88 changes: 44 additions & 44 deletions doc/manual/manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
\date{\today}
\author{Bruno Dutertre}
\title{\textbf{Yices Manual\\[0.6em]
Version 2.6.0}}
Version 2.6.1}}
\end{titlepage}

\maketitle
Expand Down Expand Up @@ -81,7 +81,7 @@ \section{Download and Installation}
apt for Debian/Ubuntu).

For the latest developments, you can clone our Git repository
\url{https://github.com/SRI-CSL/yices2}.
\url{https://github.com/SRI-CSL/yices2}.


\subsection{Binary Distributions}
Expand Down Expand Up @@ -124,7 +124,7 @@ \subsection{Binary Distributions}
\end{small}
This will install the binaries in \texttt{/usr/local/bin}, the library
in \texttt{/usr/local/lib}, and the header files in
\texttt{/usr/local/include}.
\texttt{/usr/local/include}.

\medskip\noindent
To install Yices in a different location, you can type
Expand Down Expand Up @@ -775,7 +775,7 @@ \subsection{Arithmetic}
\item \texttt{div}, \texttt{mod}: integer division and modulo
\item \texttt{divides}, \texttt{is-int}: check for divisibility and integrality
\end{itemize}
These operations have the usual meaning. As in the SMT-LIB Ints theory,
These operations have the usual meaning. As in the SMT-LIB Ints theory,
the division and modulo operations are defined by the following constraints:
$$(\mathtt{div}\ x\ k)\in \integers$$
$$x~=~k.(\mathtt{div}\ x\ k) + (\mathtt{mod}\ x\ k)$$
Expand Down Expand Up @@ -1227,7 +1227,7 @@ \section{Exists/Forall Problems}
\begin{verbatim}
(define x::real)
(assert
(assert
(forall (y::real)
(=> (and (< (* -1 y) 0) (< (+ -10 y) 0))
(< (+ -7 (* -2 x) y) 0))))
Expand Down Expand Up @@ -1291,7 +1291,7 @@ \section{Exists/Forall Problems}
\end{small}
The first line is the result of \texttt{(ef-solve)}. The second line
is the model, which just shows the value of the global variable
\texttt{x}.
\texttt{x}.

\medskip\noindent
As previously, we can get more detailed output by increasing the verbosity:
Expand Down Expand Up @@ -2061,16 +2061,16 @@ \subsubsection*{Arithmetic Functions}
\begin{small}
\begin{center}
\begin{tabular}{|p{3.4cm}|l|}
\hline Syntax & Meaning \\
\hline Syntax & Meaning \\
\hline
\texttt{(abs x)} & absolute value \\
\texttt{(abs x)} & absolute value \\
\texttt{(floor x)} & floor \\
\texttt{(ceil x)} & ceiling \\
\texttt{(ceil x)} & ceiling \\
\hline
\texttt{(div x k)} & integer division \\
\texttt{(mod x k)} & modulo \\
\texttt{(divides k x)} & divisibility test\\
\texttt{(is-int x)} & integrality test\\
\texttt{(mod x k)} & modulo \\
\texttt{(divides k x)} & divisibility test\\
\texttt{(is-int x)} & integrality test\\
\hline
\end{tabular}
\end{center}
Expand Down Expand Up @@ -2127,7 +2127,7 @@ \subsubsection*{Bitvector Arithmetic}
\begin{small}
\begin{center}
\begin{tabular}{|p{5cm}|l|}
\hline Syntax & Meaning \\
\hline Syntax & Meaning \\
\hline
\texttt{(bv-add u1 ... u\_n)} & sum \\
\texttt{(bv-mul u1 ... u\_n)} & product \\
Expand Down Expand Up @@ -2366,7 +2366,7 @@ \subsubsection*{Bitvector Inequalities}

\subsubsection*{Conversions Between Booleans and Bitvectors}

Two operations, listed in Table~\ref{bitvectors6}, convert Booleans
Two operations, listed in Table~\ref{bitvectors6}, convert Booleans
to bitvectors and conversely.

\begin{table}[h]
Expand Down Expand Up @@ -2399,9 +2399,9 @@ \subsubsection*{Conversions Between Booleans and Bitvectors}
\end{small}
is equal to the bitvector constant \texttt{0b1100}.

\medskip\noindent
\medskip\noindent
Expression \texttt{(bit u i)} is the $i$-th bit of bitvector
\texttt{u} as a Boolean. If \texttt{u} is a bitvector of $n$ bits then
\texttt{u} as a Boolean. If \texttt{u} is a bitvector of $n$ bits then
the index \texttt{i} must be an integer constant between 0 and $n-1$.
The lower-order bit has index 0 and the high-order bit has index $n-1$.
For example, we have
Expand Down Expand Up @@ -2622,7 +2622,7 @@ \subsubsection*{Check With Assumptions}
\texttt{(show-unsat-assumptions)} will provide an unsat core (i.e., a
subset of the assumptions that are inconsistent with the context).

\medskip\noindent
\medskip\noindent
Each assumption must either be the name of a Boolean term or the
negation of a named Boolean term. For example, after the following
definitions:
Expand Down Expand Up @@ -3001,8 +3001,8 @@ \subsubsection*{Conversion to DIMACS}

\begin{minipage}[c]{6.2cm}
\begin{verbatim}
(define a::(bitvector 4))
(define b::(bitvector 4))
(define a::(bitvector 4))
(define b::(bitvector 4))
(assert (bv-ge a b))
(export-to-dimacs "test.cnf")
(exit)
Expand Down Expand Up @@ -4628,64 +4628,64 @@ \chapter{GMP License Terms}
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU
Lesser General Public License, and the "GNU GPL" refers to
As used herein, "this License" refers to version 3 of the GNU
Lesser General Public License, and the "GNU GPL" refers to
version 3 of the GNU General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface
provided by the Library, but which is not otherwise based on the
provided by the Library, but which is not otherwise based on the
Library. Defining a subclass of a class defined by the Library is
deemed a mode of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the
Library with which the Combined Work was made is also called
Library with which the Combined Work was made is also called
the "Linked Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source
code for portions of the Combined Work that, considered in
code for portions of the Combined Work that, considered in
isolation, are based on the Application, and not on the Linked
Version.
The "Corresponding Application Code" for a Combined Work means
The "Corresponding Application Code" for a Combined Work means
the object code and/or source code for the Application, including
any data and utility programs needed for reproducing the Combined
Work from the Application, but excluding the System Libraries of
the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this
You may convey a covered work under sections 3 and 4 of this
License without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications,
a facility refers to a function or data to be supplied by an
Application that uses the facility (other than as an argument
Application that uses the facility (other than as an argument
passed when the facility is invoked), then you may convey a copy
of the modified version:
a) under this License, provided that you make a good faith
effort to ensure that, in the event an Application does not
a) under this License, provided that you make a good faith
effort to ensure that, in the event an Application does not
supply the function or data, the facility still operates, and
performs whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions
b) under the GNU GPL, with none of the additional permissions
of this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material
from a header file that is part of the Library. You may convey
such object code under terms of your choice, provided that, if the
from a header file that is part of the Library. You may convey
such object code under terms of your choice, provided that, if the
incorporated material is not limited to numerical parameters, data
structure layouts and accessors, or small macros, inline functions
and templates (ten or fewer lines in length), you do both of the
structure layouts and accessors, or small macros, inline functions
and templates (ten or fewer lines in length), you do both of the
following:
a) Give prominent notice with each copy of the object code that
Expand All @@ -4700,7 +4700,7 @@ \chapter{GMP License Terms}
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each
engineering for debugging such modifications, if you also do each
of the following:
a) Give prominent notice with each copy of the Combined Work
Expand All @@ -4717,7 +4717,7 @@ \chapter{GMP License Terms}
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms
0) Convey the Minimal Corresponding Source under the terms
of this License, and the Corresponding Application Code in
a form suitable for, and under terms that permit, the user
to recombine or relink the Application with a modified
Expand All @@ -4732,15 +4732,15 @@ \chapter{GMP License Terms}
with a modified version of the Library that is
interface-compatible with the Linked Version.
e) Provide Installation Information, but only if you would
e) Provide Installation Information, but only if you would
otherwise be required to provide such information under
section 6 of the GNU GPL, and only to the extent that such
information is necessary to install and execute a modified
version of the Combined Work produced by recombining or
version of the Combined Work produced by recombining or
relinking the Application with a modified version of the
Linked Version. (If you use option 4d0, the Installation
Information must accompany the Minimal Corresponding Source
and Corresponding Application Code. If you use option 4d1,
Information must accompany the Minimal Corresponding Source
and Corresponding Application Code. If you use option 4d1,
you must provide the Installation Information in the manner
specified by section 6 of the GNU GPL for conveying
Corresponding Source.)
Expand All @@ -4754,7 +4754,7 @@ \chapter{GMP License Terms}
of your choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
based on the Library, uncombined with any other library
facilities, conveyed under the terms of this License.
b) Give prominent notice with the combined library that part
Expand All @@ -4764,9 +4764,9 @@ \chapter{GMP License Terms}
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new
versions of the GNU Lesser General Public License from time to
versions of the GNU Lesser General Public License from time to
time. Such new versions will be similar in spirit to the present
version, but may differ in detail to address new problems or
version, but may differ in detail to address new problems or
concerns.
Each version is given a distinguishing version number. If the
Expand All @@ -4777,7 +4777,7 @@ \chapter{GMP License Terms}
version published by the Free Software Foundation. If the Library
as you received it does not specify a version number of the GNU
Lesser General Public License, you may choose any version of the
GNU Lesser General Public License ever published by the Free
GNU Lesser General Public License ever published by the Free
Software Foundation.
If the Library as you received it specifies that a proxy can
Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '2.6'
# The full version, including alpha/beta/rc tags.
release = '2.6.0'
release = '2.6.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/include/yices.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ extern "C" {

#define __YICES_VERSION 2
#define __YICES_VERSION_MAJOR 6
#define __YICES_VERSION_PATCHLEVEL 0
#define __YICES_VERSION_PATCHLEVEL 1


/*
Expand Down

0 comments on commit 615d82d

Please sign in to comment.