summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-08-16 15:15:03 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-09-13 18:32:39 -0400
commit14776d0aeb833a7e728a27af6ef545f20b495f7f (patch)
treeeccc91e0be00cfb9af7d757aae3dd07479c256fb /contrib
parent09fc93244e10b4450592b4ede151873142d54b34 (diff)
Documentation fixes, some code typo fixes, file perms, other minor things.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/get-bug-attachments4
-rw-r--r--contrib/theoryskel/README.WHATS-NEXT5
2 files changed, 7 insertions, 2 deletions
diff --git a/contrib/get-bug-attachments b/contrib/get-bug-attachments
index 3bb433c51..869eee895 100755
--- a/contrib/get-bug-attachments
+++ b/contrib/get-bug-attachments
@@ -70,14 +70,14 @@ function webget {
count=0
for attachment in $(\
- webcat "http://church.cims.nyu.edu/bugs/show_bug.cgi?id=$bugid" 2>/dev/null \
+ webcat "http://cvc4.cs.nyu.edu/bugs/show_bug.cgi?id=$bugid" 2>/dev/null \
| grep ' href="attachment.cgi?id=[0-9][0-9]*' \
| sed 's,.* href="attachment.cgi?id=\([0-9][0-9]*\).*,\1,' \
| sort -nu); do
let count++
printf "%-30s " "Downloading attachment $attachment..."
- webget "http://church.cims.nyu.edu/bugs/attachment.cgi?id=$attachment" "test/regress/regress0/bug$bugid"
+ webget "http://cvc4.cs.nyu.edu/bugs/attachment.cgi?id=$attachment" "test/regress/regress0/bug$bugid"
done
diff --git a/contrib/theoryskel/README.WHATS-NEXT b/contrib/theoryskel/README.WHATS-NEXT
index b25b6004b..31ff2d47a 100644
--- a/contrib/theoryskel/README.WHATS-NEXT
+++ b/contrib/theoryskel/README.WHATS-NEXT
@@ -7,6 +7,11 @@ Your next steps will likely be:
and constants
* to write code in theory_$dir_rewriter.h to implement a normal form
for your theory's terms
+* for any new types that you have introduced, add "mk*Type()" functions to
+ the NodeManager and ExprManager in src/expr/node_manager.{h,cpp} and
+ src/expr/expr_manager_template.{h,cpp}. You may also want "is*()" testers
+ in src/expr/type_node.h and a corresponding Type derived class in
+ src/expr/type.h.
* to write parser rules in src/parser/cvc/Cvc.g to support the CVC input
language, src/parser/smt/Smt.g to support the (deprecated) SMT-LIBv1
language, and src/parser/smt2/Smt2.g to support SMT-LIBv2
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback