Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
sudo apt-get update
sudo apt-get install -y \
ccache \
cxxtest
cxxtest \
protobuf-compiler \
libprotoc-dev
python3 -m pip install --user --upgrade pip
python3 -m pip install --user --upgrade setuptools
python3 -m pip install --user wheel
Expand Down
4 changes: 2 additions & 2 deletions src/engine/Preprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,8 @@ void Preprocessor::collectFixedValues()

// Collect any variables with identical lower and upper bounds, or
// which are unused
for ( unsigned i = 0; i < _preprocessed.getNumberOfVariables(); ++i )
{
for ( unsigned i = 0; i < _preprocessed.getNumberOfVariables(); ++i )
{
if ( FloatUtils::areEqual( _preprocessed.getLowerBound( i ), _preprocessed.getUpperBound( i ) ) )
{
_fixedVariables[i] = _preprocessed.getLowerBound( i );
Expand Down