public TernaryTableUpdater(TernaryTable table, ValueStoreUpdater store1, ValueStoreUpdater store2, ValueStoreUpdater store3) { this.table = table; this.store1 = store1; this.store2 = store2; this.store3 = store3; }
public UnaryTableUpdater(UnaryTable table, ValueStoreUpdater store) { this.table = table; this.store = store; }
public BinaryTableUpdater(BinaryTable table, ValueStoreUpdater store1, ValueStoreUpdater store2) { this.table = table; this.store1 = store1; this.store2 = store2; }