argparse_describe(&argparse,"\nA brief description of what the program does and how it works.","\nAdditional description of the program after the description of the arguments.");
argc=argparse_parse(&argparse,argc,argv);
if(force!=0)
printf("force: %d\n",force);
if(self_gravity!=0)
printf("self_gravity: %d\n",self_gravity);
if(data.npath>0){
for(inti=0;i<data.npath;i++)
printf("path: %s\n",data.path[i]);
structargparseargparse;
argparse_init(&argparse,options,usages,0);
argparse_describe(
&argparse,
"\nA brief description of what the program does and how it works.",
"\nAdditional description of the program after the description of the "