Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PEPit/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def add_constraints_from_two_lists_of_points(self, list_of_points_1, list_of_poi
if xj_id is None:
xj_id = "Point_{}".format(j)

if i == j or (i > j and symmetry):
if point_i == point_j or (i > j and symmetry):
row_of_constraints.append(0)

else:
Expand Down
Loading