From 7f8656399b3d20c2af32f1be5a8c4efaf4fbb940 Mon Sep 17 00:00:00 2001 From: Alina Hu Date: Tue, 19 Apr 2022 07:54:10 -0700 Subject: [PATCH] adding print error statemetns --- proof.py | 40 +++++++++++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/proof.py b/proof.py index 4f0c431..4fc1927 100644 --- a/proof.py +++ b/proof.py @@ -268,13 +268,16 @@ def rightMult (self, elem, lineNum): self.show() ##power methods - def breakPower(self,power): + def breakPower(self,input): """ Given an expression like e^a where a is a python integer, return a mult object equivalent to e^a :param power: the power to be converted to mult - """ - exp=power.exponent - element = power.element + """ + if isinstance(input,power) == False: + print (f"Expected a power object but received type {type(input)}") + return + exp=input.exponent + element = input.element multList=[] for i in range(exp): multList.append(element) @@ -287,6 +290,9 @@ def combinePower(self, mult): Given a mult object with a single element, convert it to a power object (for example turning e*e*e to e^3) :param mult: the mult object to be converted """ + if isinstance(mult,Mult) == False: + print (f"Expected a Mult object but received type {type(mult)}") + return multList=mult.elemList e=multList[0] for i in multList: @@ -298,13 +304,16 @@ def combinePower(self, mult): self.justifications += ['Convert multiplications to equivalent powers'] self.show() - def splitPowerAddition(self,power): + def splitPowerAddition(self,input): """ Simplify power objects: Given an expression e^a+b, convert to e^a*e^b. Given an expression e^a*b=(e^a)^b :param power: the power object with addition in exponent to be modified """ - element = self.element - exp=self.exponent + if isinstance(input, power) == False: + print (f"Expected a power object but received type {type(input)}") + return + element = input.element + exp=input.exponent l=exp.split("+") if len(l)==1: print ("No power addition to be split apart") @@ -318,13 +327,16 @@ def splitPowerAddition(self,power): self.show() - def splitPowerMult(self,power): + def splitPowerMult(self,input): """ Simplify power objects: Given an expression e^a*b=(e^a)^b :param lineNum: the power object with mult in exponent to be modified - """ - element = self.element - exp=self.exponent + """ + if isinstance(input, power) == False: + print (f"Expected a power object but received type {type(input)}") + return + element = input.element + exp=input.exponent l=exp.split("*") if len(l)==1: print ("No power multiplication to be split apart") @@ -396,6 +408,9 @@ def identleft(self, lineNum): return newProduct = Mult(l1) ret = Eq(newProduct,evidence.RHS,evidence.parentgroup) + else: + print(f"Expected an equation on line {lineNum} but received {type(evidence)}") + return self.steps += [ret] self.justifications += ["identity elimination "] @@ -427,6 +442,9 @@ def identright(self, lineNum): return newProduct = Mult(l1) ret = Eq(evidence.LHS,newProduct,evidence.parentgroup) + else: + print(f"Expected an equation on line {lineNum} but received {type(evidence)}") + return self.steps += [ret] self.justifications += ["identity elimination "]