diff --git a/main.py b/main.py index b011b95..eb2022c 100644 --- a/main.py +++ b/main.py @@ -3,6 +3,6 @@ circuitSolver = CircuitSolver.compileCircuitFromFile('circuit.crc') circuitSolver.setRoundingPlace(5) circuitSolver.solve() -circuitSolver.showStepByStepReasoning(showVoltageSteps=False, showCurrentSteps=False, showResistanceSteps=True) +circuitSolver.showStepByStepReasoning(showVoltageSteps=True, showCurrentSteps=True, showResistanceSteps=True) print('\n\n') -circuitSolver.showCircuit(showVoltage=False, showCurrent=False, showResistance=True, showLegs=True, showResistors=False) \ No newline at end of file +circuitSolver.showCircuit(showVoltage=True, showCurrent=True, showResistance=True, showLegs=True, showResistors=True) \ No newline at end of file