bueler / p4pdes

C and Python examples from my book on using PETSc and Firedrake to solve PDEs
MIT License
182 stars 71 forks source link

first line of help string of each code includes option prefix #37

Closed bueler closed 4 years ago

bueler commented 8 years ago

c/ch2/tri.c is an example. Make this uniform so that

$ ./program -help |head          # determine that "prg_" is prefix
$ ./program -help |grep prg_     # list the options with this prefix

is part of the "help system".

Then document this feature in Chapters 2 and 3 where it will first be used.

bueler commented 5 years ago

I still need to go through and make this uniform.

bueler commented 4 years ago

I believe this is done enough.