We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a8f01 commit 3929c9dCopy full SHA for 3929c9d
src/main/java/org/quisl/framework/java/instructions/gates/Gate.java
@@ -2,13 +2,13 @@
2
3
public abstract class Gate {
4
5
- private Integer numInputs;
+ private final Integer numInputs;
6
7
- private Integer numOutputs;
+ private final Integer numOutputs;
8
9
- private String prefix;
+ private final String prefix;
10
11
- private String gateName;
+ private final String gateName;
12
13
14
public Gate(Integer numInputs, Integer numOutputs,
@@ -47,4 +47,6 @@ public String getGateName() {
47
48
}
49
50
+ public abstract void applyGate();
51
+
52
0 commit comments