Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / wires / Wire.java
index fc7d346..8eff2ef 100644 (file)
@@ -61,7 +61,7 @@ public class Wire
                BitVectorMutator mutator = BitVectorMutator.empty();
                for (ReadWriteEnd wireArrayEnd : inputs)
                        mutator.join(wireArrayEnd.getInputValues());
-               setNewValues(mutator.get());
+               setNewValues(mutator.toBitVector());
        }
 
        private void setNewValues(BitVector newValues)
@@ -495,7 +495,7 @@ public class Wire
                                        continue;
                                mutator.join(wireEnd.inputValues);
                        }
-                       return mutator.get();
+                       return mutator.toBitVector();
                }
 
                @Override