Home | History | Annotate | Download | only in ceres

Lines Matching refs:graph

33 #include "ceres/graph.h"
49 scoped_ptr<Graph< ParameterBlock*> > graph(CreateHessianGraph(program));
50 int independent_set_size = IndependentSetOrdering(*graph, ordering);
68 scoped_ptr<Graph< ParameterBlock*> > graph(CreateHessianGraph(program));
75 IndependentSetOrdering(*graph, &independent_set_ordering);
79 graph->RemoveVertex(parameter_block);
86 Graph<ParameterBlock*>*
88 Graph<ParameterBlock*>* graph = CHECK_NOTNULL(new Graph<ParameterBlock*>);
93 graph->AddVertex(parameter_block);
113 graph->AddEdge(parameter_blocks[j], parameter_blocks[k]);
118 return graph;