Commit 02ae0cba authored by Jesse Mapel's avatar Jesse Mapel
Browse files

fixed variable name error in ControlNet

parent 90e3846d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -601,8 +601,8 @@ namespace Isis {
        // forces the edges to be unique.)
        ImageConnection connection;
        bool edgeAdded;
        boost::tie(connection, edgeAdded) = boost::add_edge(m_vertexMap[serial],
                                                   m_vertexMap[sn],
        boost::tie(connection, edgeAdded) = boost::add_edge(m_vertexMap[sourceSerial],
                                                   m_vertexMap[targetSerial],
                                                   m_controlGraph);
        m_controlGraph[connection].strength++;