- Adding incremental infrastructure which allows pushing and popping constraints to/from the InputQuery.
- Dropped support for parsing Tensorflow network format. Newest Marabou version that supports Tensorflow is at commit 190555573e4702.
-
Changes in core solving module:
- Added proof producing versions of
Sign
,Max
,Absolute Value
andDisjunction
constraints. - Added support for
LeakyRelu
,Clip
,Round
,Softmax
. - Added support for forward-backward abstract interpretation.
- Added proof producing versions of
-
Dependency changes:
- Dropped support for Python 3.7
- Now use ONNX 1.15.0 (up from 1.12.0) in both C++ and Python backends.
- The class
MarabouONNXNetwork
no longer depends ontorch
in Python backend. - Upgrade C++ standard from 11 to 17.
-
Marabou now prints errors on
stderr
rather thanstdout
-
Changes to command-line ONNX support:
- Fixed bug with variable lower bounds not being set correctly.
- Fixed bug with sigmoid operators not being parsed correctly.
- Added support for
Tanh
,Unsqueeze
,Squeeze
,LeakyRelu
,Dropout
, andCast
operators. - Added support for networks with multiple outputs
-
Added command-line support for properties in the VNNLIB format.
-
Changes to Python ONNX support:
- Added support for
Softmax
,Bilinear
,Dropout
, andLeakyRelu
operators. MarabouONNXNetwork
no longer exposes the fieldsmadeGraphEquations
,varMap
,constantMap
,shapeMap
as these were supposed to be internal implementation details.MarabouONNXNetwork
no longer has ashallowCopy
method. Instead of calling this method, you should set the new parameterpreserveExistingConstraints
in the methodreadONNX
toTrue
which has the same effect.- The constructor
MarabouONNXNetwork()
and methodMarabouNetwork.readONNX
no longer take areindexOutputVars
parameter (was intended to be used for internal testing purposes only). - The method
MarabouNetwork.getMarabouQuery
has been renamedgetInputQuery
.
- Added support for
-
Added support for creating constraints using the overloaded syntax
<=
,==
etc. in the Python backend. Seemaraboupy/examples/7_PythonicAPI.py
for details.
- Initial versioned release