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
O bem que a violência faz, é - sempre - passageiro.
O mal que ela faz, é permanente.
Mahatma Gandhi
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.