Skip to content

Commit

Permalink
Update desktop.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
marceloparavisi committed Dec 5, 2017
1 parent 0092366 commit d836245
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/source/gams-madara/compilation/desktop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,25 @@ You should configure the variable ``initialized_`` to be true in the method ``ge
}
}
minor fixes: AlgorithmFactoryRepository.cpp
-------------------------------------------
You should change the following code from:
.. code-block:: bash
add (aliases, new area_coverage::PriorityWeightedRandomAreaCoverageFactory ());
add (aliases, new area_coverage::SnakeAreaCoverageFactory ());
to:
.. code-block:: bash
add (aliases, new area_coverage::PriorityWeightedRandomAreaCoverageFactory ());
aliases.resize (2);
aliases[0] = "snake";
aliases[1] = "sac";
add (aliases, new area_coverage::SnakeAreaCoverageFactory ());

0 comments on commit d836245

Please sign in to comment.