Remove references to nyu (#1721)
authorClark Barrett <barrett@cs.stanford.edu>
Mon, 2 Apr 2018 20:35:24 +0000 (13:35 -0700)
committerAina Niemetz <aina.niemetz@gmail.com>
Mon, 2 Apr 2018 20:35:24 +0000 (13:35 -0700)
22 files changed:
NEWS
configure.ac
contrib/alttheoryskel/README.WHATS-NEXT
contrib/cvc-mode.el
contrib/get-authors
contrib/get-bug-attachments [deleted file]
contrib/theoryskel/README.WHATS-NEXT
contrib/update-copyright.pl
doc/SmtEngine.3cvc_template.in
doc/cvc4.1_template.in
doc/cvc4.5.in
doc/libcvc4.3.in
doc/libcvc4compat.3.in
doc/libcvc4parser.3.in
doc/mainpage.md
doc/options.3cvc_template.in
examples/README
src/parser/cvc/Cvc.g
src/smt/smt_engine.cpp
test/regress/regress1/auflia/bug330.smt2
test/regress/regress1/rewriterules/read5.smt2
test/regress/regress3/pp-regfile.smt

diff --git a/NEWS b/NEWS
index ff135d1cede1495b0f5059fb11cff03a702ff372..f23833bb630c6ed55450007a39120192fb68ec42 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -126,4 +126,3 @@ Changes since 1.0
   "unsat") as well.  Now, single -q silences messages and warnings, and
   double -qq silences all output (except on exception or signal).
 
--- Morgan Deters <mdeters@cs.nyu.edu>  Wed, 02 Jul 2014 14:45:05 -0400
index a279da5cb9de212d411a0df357bb41cc9f4943c1..fb225b688166aca6ef5c259ffc295612b88b720d 100644 (file)
@@ -11,7 +11,7 @@ dnl Preprocess CL args. Defined in config/cvc4.m4
 CVC4_AC_INIT
 
 AC_PREREQ([2.61])
-AC_INIT([cvc4], _CVC4_RELEASE_STRING, [cvc-bugs@cs.nyu.edu])
+AC_INIT([cvc4], _CVC4_RELEASE_STRING, [cvc4-bugs@cs.stanford.edu])
 AC_CONFIG_SRCDIR([src/include/cvc4_public.h])
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_MACRO_DIR([config])
index c6ad91c3f3f4cacbc8afd91a3ec930cad1e63e36..c0237c3001fb4291ff254d0a65ce2253ce43cbd0 100644 (file)
@@ -13,13 +13,13 @@ Your next steps will likely be:
 
 You'll probably find the Developer's wiki useful:
 
-  http://cvc4.cs.nyu.edu/wiki/
+  http://cvc4.cs.stanford.edu/wiki/
 
-...and in particular the Developer's Guide:
+...and the Developer's Guide:
 
-  http://cvc4.cs.nyu.edu/wiki/Developer%27s_Guide
+  https://github.com/CVC4/CVC4/wiki/Developer-Guide
 
 which contains coding guidelines for the CVC4 project.
 
-Good luck, and please contact cvc4-devel@cs.nyu.edu for assistance
+Good luck, and please contact cvc4-devel@cs.stanford.edu for assistance
 should you need it!
index f159944dd28c13d3542b6ca7c0f2df30b37cdbf6..e32c0c439e4096939f35eb37b4caded15a9335af 100644 (file)
@@ -644,7 +644,7 @@ process will leave its output. Currently, each run of CVC clears the
 compilation buffer. If you need to save multiple runs, save them one
 at a time.
 
-Please report bugs to barrett@cs.nyu.edu."
+Please report bugs to barrett@cs.stanford.edu."
   (interactive)
   (use-local-map cvc-mode-map)
 ;;; Disable asking for the compile command
index a888d38f380f5e656fd83c08d8ae5bd16a80fbdf..59187a81cba78eefe2360ca298a8b37f0ec502b6 100755 (executable)
@@ -1,8 +1,7 @@
 #!/bin/sh
 #
 # get-authors
-# Morgan Deters <mdeters@cs.nyu.edu> for CVC4
-# Copyright (c) 2009-2014  The CVC4 Project
+# Copyright (c) 2009-2018  The CVC4 Project
 #
 # usage: get-authors [ files... ]
 #
diff --git a/contrib/get-bug-attachments b/contrib/get-bug-attachments
deleted file mode 100755 (executable)
index 80205ba..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/bin/bash
-#
-# get-bug-attachments
-# Morgan Deters <mdeters@cs.nyu.edu>
-# Wed, 26 Sep 2012 09:40:10 -0400
-#
-
-if [ $# -lt 1 ]; then
-  echo "usage: `basename $0` bugids.." >&2
-  exit 1
-fi
-
-while [ $# -gt 0 ]; do
-
-bugid="$1"
-shift
-
-function webcat {
-  if which wget &>/dev/null; then
-    wget -O - "$1"
-  elif which curl &>/dev/null; then
-    curl "$1"
-  else
-    echo "Please install wget or curl." >&2;
-    exit 1
-  fi
-}
-
-function webget {
-  if which wget &>/dev/null; then
-    tmpfile="$(mktemp get_bug_attach.$$.XXXXXXXX)"
-    filename="$(wget -qS -O "$tmpfile" "$1" 2>&1 | grep -i 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
-    ext="$(echo "$filename" | sed 's,.*\.\(.*\),\1,')"
-    if [ -e "$2.$ext" ] && ! diff -q "$tmpfile" "$2.$ext" &>/dev/null; then
-      c=a
-      while [ -e "$2$c.$ext" ] && ! diff -q "$tmpfile" "$2$c.$ext" &>/dev/null; do
-        c=$(echo $c | tr a-y b-z)
-      done
-      mkdir -p "$(dirname "$2")"
-      mv "$tmpfile" "$2$c.$ext"
-      echo "$2$c.$ext"
-    else
-      mkdir -p "$(dirname "$2")"
-      mv "$tmpfile" "$2.$ext"
-      echo "$2.$ext"
-    fi
-  elif which curl &>/dev/null; then
-    tmpfile="$(mktemp get_bug_attach.$$.XXXXXXXX)"
-    filename="$(curl --head "$1" 2>&1 | grep -i 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
-    curl "$1" >"$tmpfile" 2>/dev/null
-    ext="$(echo "$filename" | sed 's,.*\.\(.*\),\1,')"
-    if [ -e "$2.$ext" ] && ! diff -q "$tmpfile" "$2.$ext" &>/dev/null; then
-      c=a
-      while [ -e "$2$c.$ext" ] && ! diff -q "$tmpfile" "$2$c.$ext" &>/dev/null; do
-        c=$(echo $c | tr a-y b-z)
-      done
-      mkdir -p "$(dirname "$2")"
-      mv "$tmpfile" "$2$c.$ext"
-      echo "$2$c.$ext"
-    else
-      mkdir -p "$(dirname "$2")"
-      mv "$tmpfile" "$2.$ext"
-      echo "$2.$ext"
-    fi
-  else
-    echo "Please install wget or curl." >&2;
-    exit 1
-  fi
-}
-
-count=0
-for attachment in $(\
-  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://cvc4.cs.nyu.edu/bugs/attachment.cgi?id=$attachment" "test/regress/regress0/bug$bugid"
-
-done
-
-if [ $count -eq 0 ]; then
-  echo "There are no bug attachments for bug #$bugid."
-else
-  s=s
-  [ $count -eq 1 ] && s=
-  echo "Downloaded $count bug attachment$s for bug #$bugid."
-fi
-
-done
index 17affade4a0c0c87ee3f641b450d27e38340fe38..213004d5b45d9e83372a70d917feee67e1f0af8c 100644 (file)
@@ -17,7 +17,8 @@ Your next steps will likely be:
 * 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
-* to write printer code in src/printer/*/*_printer* to support printing
+* to write printer code in
+src/printer/*/*_printer* to support printing
   your theory terms and types in various output languages
 
 and finally:
@@ -33,13 +34,13 @@ and finally:
 
 You'll probably find the Developer's wiki useful:
 
-  http://cvc4.cs.nyu.edu/wiki/
+  http://cvc4.cs.stanford.edu/wiki/
 
-...and in particular the Developer's Guide:
+...and the Developer's Guide:
 
-  http://cvc4.cs.nyu.edu/wiki/Developer%27s_Guide
+  https://github.com/CVC4/CVC4/wiki/Developer-Guide
 
 which contains coding guidelines for the CVC4 project.
 
-Good luck, and please contact cvc4-devel@cs.nyu.edu for assistance
+Good luck, and please contact cvc4-devel@cs.stanford.edu for assistance
 should you need it!
index d0dd33cbbe1e15d911bc37ad4349748ee656d099..e052430c7a0b13a9e79043ce9365ca7e5373f200 100755 (executable)
@@ -1,8 +1,7 @@
 #!/usr/bin/perl -w
 #
 # update-copyright.pl
-# Morgan Deters <mdeters@cs.nyu.edu> for CVC4
-# Copyright (c) 2009-2014  The CVC4 Project
+# Copyright (c) 2009-2018  The CVC4 Project
 #
 # usage: update-copyright [-m] [files/directories...]
 #        update-copyright [-h | --help]
index b240dd8d2d5b1769d20fda2b345a55d83f2e80b8..7eaa69cf1fdfbef5ec9f52ff38a5dca735349f4a 100644 (file)
@@ -52,4 +52,4 @@ contributors.
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index a0535553bf579455aaf6871f15f97e3980294821..90ae938abde987ad34cd3d5ed2c87ab63291710c 100644 (file)
@@ -129,4 +129,4 @@ contributors.
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index b54f235601852fc546c260984dfa7b7c206e24fe..c8629bffa6ab122f207888380d37898f04a31788 100644 (file)
@@ -18,4 +18,4 @@ to background theories of interest.
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index f85a909dd915d801b5ddcf8ffbeb2f533159cb4f..bf5fde5772b7a78e7749426fc433e2cc0d85aa6f 100644 (file)
@@ -62,4 +62,4 @@ is used primarily to make assertions, check satisfiability/validity, and extract
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://goedel.cs.nyu.edu/wiki/ .
+.BR http://goedel.cs.stanford.edu/wiki/ .
index 3aa58b7129a50d04ad89c078670590645e3355d4..fbb21e6a8976cd8e1d38b432b4ce288e0f121dee 100644 (file)
@@ -12,4 +12,4 @@ libcvc4compat \- a CVC3 compatibility library interface for the CVC4 theorem pro
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index 09fea23f1d98bf7821d85e08bc66e4de40e6ac34..7971a8822ee939425ba358fe686dc7ea34d654d9 100644 (file)
@@ -12,4 +12,4 @@ libcvc4parser \- a parser library interface for the CVC4 theorem prover
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index 8c801aa148971cec85b23a820c3bc658a6762c06..13005e023239d72326c2a3bd742ad279b57586f8 100644 (file)
@@ -8,7 +8,7 @@ The main classes of the CVC4 API are:
 - CVC4::SmtEngine - the SMT interface, permits making assertions and checking satisfiability (create one of these for your application)
 
 There are numerous examples of the use of the C++ API in the examples/api directory of the CVC4 source distribution.  There is also a discussion on our CVC4 Wiki at
-http://cvc4.cs.nyu.edu/wiki/Tutorials#C.2B.2B_API
+http://cvc4.cs.stanford.edu/wiki/Tutorials#C.2B.2B_API
 
 Using the CVC4 API from Java
 
index e72363b62a41b005ab8f42a77614560722aedf96..477963036c8cc54f1d6dceb9e362574c95ff39d5 100644 (file)
@@ -40,4 +40,4 @@ contributors.
 
 Additionally, the CVC4 wiki contains useful information about the
 design and internals of CVC4.  It is maintained at
-.BR http://cvc4.cs.nyu.edu/wiki/ .
+.BR http://cvc4.cs.stanford.edu/wiki/ .
index 5f5bb09800affcc4f259b0ce5aa759606d4421bd..df8cffe73851d5c9c006cf91afb5b71b3b39e1fb 100644 (file)
@@ -1,6 +1,6 @@
 This directory contains usage examples of CVC4's different language
 bindings, library APIs, and also tutorial examples from the tutorials
-available at http://cvc4.cs.nyu.edu/wiki/Tutorials
+available at http://cvc4.cs.stanford.edu/wiki/Tutorials
 
 *** Files named SimpleVC*, simple_vc*
 
@@ -31,4 +31,3 @@ source.  After building CVC4, you can run "make examples".  You'll
 find the built binaries in builds/examples (or just in "examples" if
 you configured a build directory outside of the source tree).
 
--- Morgan Deters <mdeters@cs.nyu.edu>  Tue, 24 Dec 2013 09:12:59 -0500
index 6337fb5f6329d4ea419575361388d20103d89738..47bee5740c40277624e289dd599ddf231e152588 100644 (file)
@@ -1729,8 +1729,7 @@ postfixTerm[CVC4::Expr& f]
       /* left- or right-shift */
     | ( LEFTSHIFT_TOK { left = true; }
       | RIGHTSHIFT_TOK { left = false; } ) k=numeral
-      { // Defined in:
-        // http://www.cs.nyu.edu/acsys/cvc3/doc/user_doc.html#user_doc_pres_lang_expr_bit
+      { 
         if(left) {
           f = MK_EXPR(kind::BITVECTOR_CONCAT, f, MK_CONST(BitVector(k)));
         } else {
index 8450307dbf7a2325495fda6282b462f75e4dce5b..a329541e572526c571afba06377e157f78097ed0 100644 (file)
@@ -4563,7 +4563,7 @@ void SmtEnginePrivate::processAssertions() {
         d_assertions[d_realAssertionsEnd - 1] = Rewriter::rewrite(Node(builder));
       }
       // TODO(b/1256): For some reason this is needed for some benchmarks, such as
-      // http://cvc4.cs.nyu.edu/benchmarks/smtlib2/QF_AUFBV/dwp_formulas/try5_small_difret_functions_dwp_tac.re_node_set_remove_at.il.dwp.smt2
+      // QF_AUFBV/dwp_formulas/try5_small_difret_functions_dwp_tac.re_node_set_remove_at.il.dwp.smt2
       removeITEs();
       applySubstitutionsToAssertions();
       //      Assert(iteRewriteAssertionsEnd == d_assertions.size());
index d05a8b2a092aec22e9a7e22a613c41f77dc50d93..ce787e2e78956c18a3520cdc3cb769a3026ffb63 100644 (file)
@@ -1,7 +1,7 @@
 (set-logic QF_AUFLIA)
 (set-info :source |
 Translated from old SVC processor verification benchmarks.  Contact Clark
-Barrett at barrett@cs.nyu.edu for more information.
+Barrett at barrett@cs.stanford.edu for more information.
 
 This benchmark was automatically translated into SMT-LIB format from
 CVC format using CVC Lite
index 2cd6eb2447a1fca454488c151e7231794de127f6..0f92effcb940a995b3870061ec7f5b5395e4484a 100644 (file)
@@ -2,7 +2,7 @@
 (set-logic AUF)
 (set-info :source |
 Translated from old SVC processor verification benchmarks.  Contact Clark
-Barrett at barrett@cs.nyu.edu for more information.
+Barrett at barrett@cs.stanford.edu for more information.
 
 This benchmark was automatically translated into SMT-LIB format from
 CVC format using CVC Lite
index e60be055a5dfcc54bc0d8dd6fb2d2ca20813a95b..0b9d07b8418207ee02590f4c7adc2652aa85c657 100644 (file)
@@ -1,7 +1,7 @@
 (benchmark pp_regfile.smt
   :source {
 Translated from old SVC processor verification benchmarks.  Contact Clark
-Barrett at barrett@cs.nyu.edu for more information.
+Barrett at barrett@cs.stanford.edu for more information.
 
 This benchmark was automatically translated into SMT-LIB format from
 CVC format using CVC Lite