Skip to content

Commit

Permalink
Merge branch 'idea1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayank Sharma committed Jan 6, 2022
2 parents 519e389 + 5f35fc5 commit 1c3d41b
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
Expand Down
Binary file modified diagram/Boolean_Circuit.eapx
Binary file not shown.
Binary file modified diagram/Starter Class Diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added jar_files/boolean_circuit_2022.01.06.1730..jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/test/java/Testing.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void testIfCircuitIsFailSafe3() {
final Calculatable sig1 = factory.createAndGateWithInputs(input1, input2);
final Calculatable sig2 = factory.createNotGateWithInput(null);
final Calculatable sig3 = factory.createOrGateWithInputs(sig1, sig2);
Circuit circuit = factory.createCircuit(sig1);
Circuit circuit = factory.createCircuit(sig3);
circuit.calculate();
fail("Wrong user-input or circuit connections were handled INCORRECTLY");
} catch (final Exception e) {
Expand Down

0 comments on commit 1c3d41b

Please sign in to comment.