summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/quantifiers/first_order_model.h2
-rw-r--r--src/theory/quantifiers/sygus/cegis.h2
-rw-r--r--src/theory/quantifiers/sygus/cegis_unif.h2
-rw-r--r--src/theory/quantifiers/sygus/sygus_explain.h2
-rw-r--r--src/theory/quantifiers/sygus_sampler.h4
5 files changed, 6 insertions, 6 deletions
diff --git a/src/theory/quantifiers/first_order_model.h b/src/theory/quantifiers/first_order_model.h
index 748bf12da..c33e2c6b7 100644
--- a/src/theory/quantifiers/first_order_model.h
+++ b/src/theory/quantifiers/first_order_model.h
@@ -173,7 +173,7 @@ class FirstOrderModel : public TheoryModel
std::map<Node, std::map<Node, int> > d_quant_var_id;
/** process initialize model for term */
virtual void processInitializeModelForTerm(Node n) = 0;
- /** process intialize quantifier */
+ /** process initialize quantifier */
virtual void processInitializeQuantifier(Node q) {}
/** process initialize */
virtual void processInitialize(bool ispre) = 0;
diff --git a/src/theory/quantifiers/sygus/cegis.h b/src/theory/quantifiers/sygus/cegis.h
index f094b9490..ce4186eb2 100644
--- a/src/theory/quantifiers/sygus/cegis.h
+++ b/src/theory/quantifiers/sygus/cegis.h
@@ -77,7 +77,7 @@ class Cegis : public SygusModule
*/
Node d_base_body;
//----------------------------------cegis-implementation-specific
- /** do cegis-implementation-specific intialization for this class */
+ /** do cegis-implementation-specific initialization for this class */
virtual bool processInitialize(Node n,
const std::vector<Node>& candidates,
std::vector<Node>& lemmas);
diff --git a/src/theory/quantifiers/sygus/cegis_unif.h b/src/theory/quantifiers/sygus/cegis_unif.h
index 48fca53f5..858a83bce 100644
--- a/src/theory/quantifiers/sygus/cegis_unif.h
+++ b/src/theory/quantifiers/sygus/cegis_unif.h
@@ -236,7 +236,7 @@ class CegisUnif : public Cegis
Node getNextDecisionRequest(unsigned& priority) override;
private:
- /** do cegis-implementation-specific intialization for this class */
+ /** do cegis-implementation-specific initialization for this class */
bool processInitialize(Node n,
const std::vector<Node>& candidates,
std::vector<Node>& lemmas) override;
diff --git a/src/theory/quantifiers/sygus/sygus_explain.h b/src/theory/quantifiers/sygus/sygus_explain.h
index 4efc171d3..3f18a65d6 100644
--- a/src/theory/quantifiers/sygus/sygus_explain.h
+++ b/src/theory/quantifiers/sygus/sygus_explain.h
@@ -65,7 +65,7 @@ class TermRecBuild
/** get the i^th child of the active term */
Node getChild(unsigned i);
/** build the (modified) version of the term
- * we intialized via the call to init().
+ * we initialized via the call to init().
*/
Node build(unsigned p = 0);
diff --git a/src/theory/quantifiers/sygus_sampler.h b/src/theory/quantifiers/sygus_sampler.h
index 0134b3a86..f90c6ebd0 100644
--- a/src/theory/quantifiers/sygus_sampler.h
+++ b/src/theory/quantifiers/sygus_sampler.h
@@ -50,7 +50,7 @@ namespace quantifiers {
* For example, say the grammar for f is:
* A = 0 | 1 | x | y | A+A | ite( B, A, A )
* B = A <= A
- * If we call intialize( tds, f, 5 ), this class will generate 5 random sample
+ * If we call initialize( tds, f, 5 ), this class will generate 5 random sample
* points for (x,y), say (0,0), (1,1), (0,1), (1,0), (2,2). The return values
* of successive calls to registerTerm are listed below.
* registerTerm( 0 ) -> 0
@@ -281,7 +281,7 @@ class SygusSampler : public LazyTrieEvaluator
std::map<Node, std::vector<TypeNode> > d_var_sygus_types;
/** map from constants to sygus types that include them */
std::map<Node, std::vector<TypeNode> > d_const_sygus_types;
- /** register sygus type, intializes the above two data structures */
+ /** register sygus type, initializes the above two data structures */
void registerSygusType(TypeNode tn);
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback