-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use standard name conventions and add file headers
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
- Loading branch information
Showing
6 changed files
with
67 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,33 @@ | ||
/*++ | ||
Copyright (c) 2012 Microsoft Corporation | ||
Module Name: | ||
nlsat_simple_checker.cpp | ||
Abstract: | ||
Attempts to find a conflict by using simple polynomial forms. | ||
Author: | ||
Mengyu Zhao (Linxi) and Shaowei Cai | ||
Revision History: | ||
--*/ | ||
|
||
#pragma once | ||
#include "math/polynomial/algebraic_numbers.h" | ||
#include "nlsat/nlsat_clause.h" | ||
|
||
|
||
namespace nlsat { | ||
class Simple_Checker { | ||
class simple_checker { | ||
struct imp; | ||
imp * m_imp; | ||
public: | ||
Simple_Checker(pmanager &_pm, anum_manager &_am, const clause_vector &_clauses, literal_vector &_learned_unit, const atom_vector &_atoms, const unsigned &_arith_var_num); | ||
~Simple_Checker(); | ||
simple_checker(pmanager &_pm, anum_manager &_am, const clause_vector &_clauses, literal_vector &_learned_unit, const atom_vector &_atoms, const unsigned &_arith_var_num); | ||
~simple_checker(); | ||
bool operator()(); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters