Skip to content

Commit ed4c8f3

Browse files
committed
formatting
1 parent aa82df9 commit ed4c8f3

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

src/engine/IEngine.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class UnsatCertificateNode;
4444
class IEngine
4545
{
4646
public:
47-
virtual ~IEngine(){};
47+
virtual ~IEngine() {};
4848

4949
enum ExitCode {
5050
UNSAT = 0,
@@ -216,7 +216,6 @@ class IEngine
216216
Get the number of PLC lemmas
217217
*/
218218
virtual unsigned getNumOfLemmas() const = 0;
219-
220219
};
221220

222221
#endif // __IEngine_h__

src/engine/Marabou.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ void Marabou::solveQuery()
224224
_engine->solve( timeoutInSeconds );
225225
if ( _engine->shouldProduceProofs() && _engine->getExitCode() == Engine::UNSAT )
226226
_engine->certifyUNSATCertificate();
227-
else if (_engine->shouldProduceProofs())
227+
else if ( _engine->shouldProduceProofs() )
228228
_engine->deleteProofIfExists();
229229
}
230230

src/engine/ReluConstraint.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ List<PiecewiseLinearConstraint::Fix> ReluConstraint::getSmartFixes( ITableau *ta
583583

584584
List<PiecewiseLinearCaseSplit> ReluConstraint::getCaseSplits() const
585585
{
586-
if ( getPhaseStatus() != PHASE_NOT_FIXED )
587-
throw MarabouError( MarabouError::REQUESTED_CASE_SPLITS_FROM_FIXED_CONSTRAINT );
586+
if ( getPhaseStatus() != PHASE_NOT_FIXED )
587+
throw MarabouError( MarabouError::REQUESTED_CASE_SPLITS_FROM_FIXED_CONSTRAINT );
588588

589589
List<PiecewiseLinearCaseSplit> splits;
590590

src/proofs/tests/Test_UnsatCertificateNode.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class UnsatCertificateNodeTestSuite : public CxxTest::TestSuite
3939
PiecewiseLinearCaseSplit split1 = splits.back();
4040
PiecewiseLinearCaseSplit split2 = splits.front();
4141

42-
auto *child1 = new UnsatCertificateNode( root, split1, 1,0 );
43-
auto *child2 = new UnsatCertificateNode( root, split2, 1,0 );
42+
auto *child1 = new UnsatCertificateNode( root, split1, 1, 0 );
43+
auto *child2 = new UnsatCertificateNode( root, split2, 1, 0 );
4444

4545
TS_ASSERT_EQUALS( child1->getParent(), root );
4646
TS_ASSERT_EQUALS( child2->getParent(), root );

0 commit comments

Comments
 (0)