Commit b84e1584 authored by Jay's avatar Jay
Browse files

Local passing, travis failing...trying a cast to int for pandas indexing

parent bb3ac353
Loading
Loading
Loading
Loading
+1 −0
Changes for autocnet/control/control.py: 1 added line, 0 removed lines.
Original line number Diff line number Diff line
@@ -153,6 +153,7 @@ class CorrespondenceNetwork(object):

        # Load the correspondence to point data structure
        for k, source_idx in df['source_idx'].items():
            source_idx = int(source_idx)
            p = Point(self.point_id)
            destination_idx = df['destination_idx'][k]