summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus_sampler.h
diff options
context:
space:
mode:
authorFabianWolff <fabi.wolff@arcor.de>2018-07-30 18:28:11 +0200
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-07-30 11:28:11 -0500
commit46520451e7f6408c6caf3e52a15672732abc5911 (patch)
tree8361b25d52b5c66522786af7affdee94df07add6 /src/theory/quantifiers/sygus_sampler.h
parent1f9d6d3c9d836d6219b8aaf717f7129c7710c9c8 (diff)
Fix several spelling errors (#2231)
Diffstat (limited to 'src/theory/quantifiers/sygus_sampler.h')
-rw-r--r--src/theory/quantifiers/sygus_sampler.h4
1 files changed, 2 insertions, 2 deletions
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