summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-31 10:37:34 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-31 10:37:34 +0200
commit98f12eaabfd4bdc04f60fdbfe7fec69bdc0eea37 (patch)
treee9b0fe84c17651bf4dd24de7316afcac967657f5 /instr-to-kodkod/src/VHDLProperty.java
parent06c523d1692aae6fffcff2d0e617994d4b04bc55 (diff)
Tagged variables are now the only skolemized vars.skol_only_the_solution
Diffstat (limited to 'instr-to-kodkod/src/VHDLProperty.java')
-rw-r--r--instr-to-kodkod/src/VHDLProperty.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/instr-to-kodkod/src/VHDLProperty.java b/instr-to-kodkod/src/VHDLProperty.java
index ac88e6e..f74aae4 100644
--- a/instr-to-kodkod/src/VHDLProperty.java
+++ b/instr-to-kodkod/src/VHDLProperty.java
@@ -9,14 +9,10 @@ import org.antlr.v4.runtime.*;
public class VHDLProperty
{
private final String filename;
- private final List<Variable> tagged_variables;
- private final List<VHDLType> tagged_variables_types;
public VHDLProperty (final String filename)
{
this.filename = filename;
- tagged_variables = new ArrayList<Variable>();
- tagged_variables_types = new ArrayList<VHDLType>();
}
public Formula generate_base_formula ()