Changeset 1302 for cpp/frams/_demos


Ignore:
Timestamp:
04/25/24 21:59:54 (7 months ago)
Author:
Maciej Komosinski
Message:

Cosmetic / minor fixes

Location:
cpp/frams/_demos
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/geneprops_graph.py

    r1242 r1302  
    4343        segs.append( ((len(n[0]),n[1]),(len(n[0])+1,child[1])) )
    4444
    45 linecol = LineCollection(segs, linewidths=2, linestyle='solid')
     45linecol = LineCollection(segs, linewidths=2, linestyle='solid', color='#ddddff')
    4646ax.add_collection(linecol)
    4747
     
    5555
    5656ax.xaxis.set_visible(False)
     57plt.tight_layout()
    5758plt.show()
  • cpp/frams/_demos/geneprops_test.cpp

    r1260 r1302  
    1010Examples:
    1111
    12 - new experimental friction:
     12- experimental exponential friction:
    1313$ ./geneprops_test f 3 -e | sort -n -k 2
    1414
     
    9494                        case 'e': fun = ExperimentalExponential; break;
    9595                        case 'h': printf("%s args: [modifier [max_count]] (one of " F14_MODIFIERS ")\n"
    96                                 "\t-l = legacy function\n"
     96                                "\t-l = legacy\n"
    9797                                "\t-n = modern, change=0.5, normalizeBiol4 disabled\n"
    98                                 "\t-e = experimental exponential function\n", argv[0]);
     98                                "\t-e = experimental exponential\n", argv[0]);
    9999                                return 0;
    100100                        default: fprintf(stderr, "%s: invalid option: %s\n", argv[0], arg); return 2;
Note: See TracChangeset for help on using the changeset viewer.