c0d00819438d839eabc9bde84f172e41df50ab05,plasma/primitives/data.py,Signal,__ne__,#Signal#Any#,180

Before Change



    
    def __ne__(self,other):
        return self.description.__ne__(other.description)

    def __lt__(self,other):
        return self.description.__lt__(other.description)
    

After Change


        return self.description_plus_paths().__eq__(other.description_plus_paths())
    
    def __ne__(self,other):
        return self.description_plus_paths().__ne__(other.description_plus_paths())

    def __lt__(self,other):
        return self.description_plus_paths().__lt__(other.description_plus_paths())
    
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: PPPLDeepLearning/plasma-python
Commit Name: c0d00819438d839eabc9bde84f172e41df50ab05
Time: 2018-11-23
Author: jk7@tigergpu.princeton.edu
File Name: plasma/primitives/data.py
Class Name: Signal
Method Name: __ne__


Project Name: PPPLDeepLearning/plasma-python
Commit Name: c0d00819438d839eabc9bde84f172e41df50ab05
Time: 2018-11-23
Author: jk7@tigergpu.princeton.edu
File Name: plasma/primitives/data.py
Class Name: Signal
Method Name: __lt__


Project Name: PPPLDeepLearning/plasma-python
Commit Name: c0d00819438d839eabc9bde84f172e41df50ab05
Time: 2018-11-23
Author: jk7@tigergpu.princeton.edu
File Name: plasma/primitives/data.py
Class Name: Signal
Method Name: __eq__