Skip to content

Commit

Permalink
add todos
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-haoze committed Aug 22, 2024
1 parent f5da232 commit 436fc58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/engine/DnCManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ void DnCManager::printResult()
{
std::cout << "sat\n" << std::endl;

// TODO: update the variable assignment using NLR if possible and double-check that all the
// constraints are indeed satisfied.
extractSolution( *_baseQuery );

printf( "Input assignment:\n" );
Expand Down
3 changes: 2 additions & 1 deletion src/engine/Marabou.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ void Marabou::solveQuery()
}
}


// TODO: update the variable assignment using NLR if possible and double-check that all the
// constraints are indeed satisfied.
if ( _engine->getExitCode() == Engine::SAT )
_engine->extractSolution( _inputQuery );
}
Expand Down

0 comments on commit 436fc58

Please sign in to comment.