SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Topology
Life is a mystery to be lived.
Not a problem to be solved.
Søren Kierkegaard.
< Box | Eliminate | Row >
Eliminate Values in Row, Column and Box of each Cell
Python Listing: ../Eliminate.py.
    def Topology_Eliminate(self,topology):
        for r in range(self.M):
            self.Topology_Eliminate_Rows(topology,r)
                    
    def Topology_Eliminate_Rows(self,topology,r):
        for s in range(self.M):
            self.Topology_Eliminate_Element(topology,r,s)
                    
                    
                    
< Box | Eliminate | Row >
Messages:
0 secs.