COIN-OR::LEMON - Graph Library

Changeset 654:a312f84d86c6 in lemon-main


Ignore:
Timestamp:
05/08/09 13:15:29 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Doc fixes for lgf-gen (#282)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/lgf-gen.cc

    r623 r654  
    1919/// \ingroup tools
    2020/// \file
    21 /// \brief Special plane digraph generator.
     21/// \brief Special plane graph generator.
    2222///
    2323/// Graph generator application for various types of plane graphs.
     
    2727///   lgf-gen --help
    2828/// \endcode
    29 /// for more info on the usage.
     29/// for more information on the usage.
    3030
    3131#include <algorithm>
     
    687687    .refOption("cities", "Number of cities (default is 1)", num_of_cities)
    688688    .refOption("area", "Full relative area of the cities (default is 1)", area)
    689     .refOption("disc", "Nodes are evenly distributed on a unit disc (default)",disc_d)
     689    .refOption("disc", "Nodes are evenly distributed on a unit disc (default)",
     690               disc_d)
    690691    .optionGroup("dist", "disc")
    691     .refOption("square", "Nodes are evenly distributed on a unit square", square_d)
     692    .refOption("square", "Nodes are evenly distributed on a unit square",
     693               square_d)
    692694    .optionGroup("dist", "square")
    693     .refOption("gauss",
    694             "Nodes are located according to a two-dim gauss distribution",
    695             gauss_d)
     695    .refOption("gauss", "Nodes are located according to a two-dim Gauss "
     696               "distribution", gauss_d)
    696697    .optionGroup("dist", "gauss")
    697 //     .mandatoryGroup("dist")
    698698    .onlyOneGroup("dist")
    699     .boolOption("eps", "Also generate .eps output (prefix.eps)")
    700     .boolOption("nonodes", "Draw the edges only in the generated .eps")
    701     .boolOption("dir", "Directed digraph is generated (each arcs are replaced by two directed ones)")
    702     .boolOption("2con", "Create a two connected planar digraph")
     699    .boolOption("eps", "Also generate .eps output (<prefix>.eps)")
     700    .boolOption("nonodes", "Draw only the edges in the generated .eps output")
     701    .boolOption("dir", "Directed graph is generated (each edge is replaced by "
     702                "two directed arcs)")
     703    .boolOption("2con", "Create a two connected planar graph")
    703704    .optionGroup("alg","2con")
    704705    .boolOption("tree", "Create a min. cost spanning tree")
     
    708709    .boolOption("tsp2", "Create a TSP tour (tree based)")
    709710    .optionGroup("alg","tsp2")
    710     .boolOption("dela", "Delaunay triangulation digraph")
     711    .boolOption("dela", "Delaunay triangulation graph")
    711712    .optionGroup("alg","dela")
    712713    .onlyOneGroup("alg")
Note: See TracChangeset for help on using the changeset viewer.