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

Eliminate
Deus não se preocupe das nossas dificuldades matemáticas.
Ele integra empiricamente.
Einstein.
Eliminate in Cell Row.
Python Listing: ../../Eliminate.py.
    def Topology_Eliminate_Element_In_Row(self,topology,r,s):
        value=self.S[r][s]
        
        for s in range(self.M):
            if (self.S[r][s]==0):
                if (value in topology[r][s]):
                    topology[r][s].remove(value)
                
            
Messages:
0 secs.