Refresh the *factorlist* attribute to equate with *originalfactorlist*. This is in effect a reset of the system, erasing any changes to *factorlist* that the program has executed.
(self)
| 59 | assert self.factorlist, "Factor list not properly loaded, check for an incomplete class instance as input." |
| 60 | |
| 61 | def refresh(self): |
| 62 | ''' |
| 63 | Refresh the *factorlist* attribute to equate with *originalfactorlist*. This is in effect a reset of the system, erasing any changes to *factorlist* that the program has executed. |
| 64 | |
| 65 | ''' |
| 66 | self.factorlist = copy.deepcopy(self.originalfactorlist) |
| 67 | |
| 68 | def sumproducteliminatevar(self, vertex): |
| 69 | ''' |
no outgoing calls