]> granicus.if.org Git - graphviz/commitdiff
Remove further -L command line arguments for fdp
authorerg <devnull@localhost>
Thu, 17 Feb 2005 15:53:23 +0000 (15:53 +0000)
committererg <devnull@localhost>
Thu, 17 Feb 2005 15:53:23 +0000 (15:53 +0000)
cmd/dot/args.c
lib/common/input.c

index f8204b3782577f6f8a7fa3338df5e0a41a8e6a92..4c87e9cf8646e4374323953f6a2646e8ec756e5e 100644 (file)
@@ -151,21 +151,12 @@ setAttr (char* arg)
   case 'n' :
     if (setInt (&fdp_parms.numIters, arg)) return 1;
     break;
-  case 'M' :
-    if (setInt (&fdp_parms.maxIters, arg)) return 1;
-    break;
   case 'U' :
     if (setInt (&fdp_parms.unscaled, arg)) return 1;
     break;
   case 'C' :
     if (setDouble (&fdp_parms.C, arg)) return 1;
     break;
-  case 'K' :
-    if (setDouble (&fdp_parms.K, arg)) return 1;
-    break;
-  case 't' :
-    if (setInt (&fdp_parms.tries, arg)) return 1;
-    break;
   case 'T' :
     if (*arg == '*') {
       if (setDouble (&fdp_parms.Tfact, arg+1)) return 1;
index 543e05a6cc733b910e7daa62bd9e5ac6a3095769..41375e2a3dc51484c6630cf37d13dc0311e75015 100644 (file)
@@ -61,16 +61,13 @@ static char *neatoItems = "\n\
  -x          - Reduce graph\n";
 
 static char *fdpFlags =
-    "(additional options for fdp)      [-L(gO)] [-L(nMUCKtT)<val>]\n";
+    "(additional options for fdp)      [-L(gO)] [-L(nUCT)<val>]\n";
 static char *fdpItems = "\n\
  -Lg         - Don't use grid\n\
  -LO         - Use old attractive force\n\
  -Ln<i>      - Set number of iterations to i\n\
- -LM<i>      - Set max. number of iterations to i\n\
  -LU<i>      - Set unscaled factor to i\n\
  -LC<v>      - Set overlap expansion factor to v\n\
- -LK<v>      - Set desired edge length to v\n\
- -Lt<i>      - Set number of tries to remove overlaps to i\n\
  -LT[*]<v>   - Set temperature (temperature factor) to v\n";
 
 static char *memtestFlags = "(additional options for memtest)  [-m]\n";