mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
Comment cleanup from Jim Roseborough
Change-Id: Id47101fe32e1449e660ec536934ee91fdaf452c7
This commit is contained in:
@@ -147,7 +147,8 @@ int main(int argc, char** argv) {
|
||||
ceres_init(argc, argv);
|
||||
|
||||
/* Note: Typically it is better to compact m and c into one block,
|
||||
* but in this case use separate blocks for illustration. */
|
||||
* but in this case use separate blocks to illustrate the use of
|
||||
* multiple parameter blocks. */
|
||||
double m = 0.0;
|
||||
double c = 0.0;
|
||||
double *parameter_pointers[] = { &m, &c };
|
||||
|
||||
@@ -43,7 +43,8 @@
|
||||
namespace ceres {
|
||||
namespace internal {
|
||||
|
||||
// Compare two vertices of a graph by their degrees.
|
||||
// Compare two vertices of a graph by their degrees, if the degrees
|
||||
// are equal then order them by their ids.
|
||||
template <typename Vertex>
|
||||
class VertexTotalOrdering {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user