summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-06-10 11:26:51 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-06-10 11:26:57 +0200
commit6417016a38e24b09bc062a4bd4b0a5945fbcc0ec (patch)
treee2c9987d6545bdad385bf101ca2c4b198bcc318a /src/theory
parent74122fe04d641d3d416a53783bd075ca9491c0b7 (diff)
Parse support for sygus LetGTerm.
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/quantifiers/term_database.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/theory/quantifiers/term_database.cpp b/src/theory/quantifiers/term_database.cpp
index 1082bed23..d57f52b35 100644
--- a/src/theory/quantifiers/term_database.cpp
+++ b/src/theory/quantifiers/term_database.cpp
@@ -1612,6 +1612,7 @@ Node TermDbSygus::builtinToSygusConst( Node c, TypeNode tn ) {
Node TermDbSygus::getSygusNormalized( Node n, std::map< TypeNode, int >& var_count, std::map< Node, Node >& subs ) {
return n;
+ /* TODO?
if( n.getKind()==SKOLEM ){
std::map< Node, Node >::iterator its = subs.find( n );
if( its!=subs.end() ){
@@ -1644,6 +1645,7 @@ Node TermDbSygus::getSygusNormalized( Node n, std::map< TypeNode, int >& var_cou
}
return n;
}
+ */
}
Node TermDbSygus::getNormalized( TypeNode t, Node prog, bool do_pre_norm, bool do_post_norm ) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback