Commit 406f226e authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Rename the jTET package to ca.mcscert.jtet.

As discussed, do the package rename now.  All MATLAB code is adjusted as necessary,
all java tests pass, and the quadratic example continues to typecheck, as
expected.
parent 9c73b7be
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -26,20 +26,18 @@
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package ca.mcmaster.cas.tabularexpressiontoolbox.cvc3generator;

import ca.mcmaster.cas.tabularexpressiontoolbox.expression.Variable;
import ca.mcmaster.cas.tabularexpressiontoolbox.expression.VariableCollection;
import ca.mcmaster.cas.tabularexpressiontoolbox.parsers.MatlabParser;
import ca.mcmaster.cas.tabularexpressiontoolbox.expression.BooleanVariableType;
import ca.mcmaster.cas.tabularexpressiontoolbox.expression.CVC3Generator;
import ca.mcmaster.cas.tabularexpressiontoolbox.tablularexpression.Cell;
import ca.mcmaster.cas.tabularexpressiontoolbox.tablularexpression.HierarchcialGridCheckerGenerator;
package ca.mcscert.jtet.cvc3generator;

import ca.mcscert.jtet.expression.VariableCollection;
import ca.mcscert.jtet.parsers.MatlabParser;
import ca.mcscert.jtet.expression.BooleanVariableType;
import ca.mcscert.jtet.expression.CVC3Generator;
import ca.mcscert.jtet.tablularexpression.Cell;
import ca.mcscert.jtet.tablularexpression.HierarchcialGridCheckerGenerator;
import java.util.ArrayList;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.List;
import java.util.Map;

import org.apache.commons.lang3.StringUtils;

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ca.mcmaster.cas.tabularexpressiontoolbox.expression;
package ca.mcscert.jtet.expression;

import java.util.Arrays;
import java.util.Collection;
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ca.mcmaster.cas.tabularexpressiontoolbox.expression;
package ca.mcscert.jtet.expression;

/**
 *
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ca.mcmaster.cas.tabularexpressiontoolbox.expression;
package ca.mcscert.jtet.expression;

import java.math.BigDecimal;
import java.math.BigInteger;
+1 −3
Original line number Diff line number Diff line
@@ -2,9 +2,7 @@
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ca.mcmaster.cas.tabularexpressiontoolbox.expression;

import java.util.Map;
package ca.mcscert.jtet.expression;

/**
 *
Loading