diff --git a/pub/lib/fregistry.cpp b/pub/lib/fregistry.cpp index 90159ade1b1d952a5afd95726c8e0807b9b6f5e4..d48a193b760bbc602e38adb1008f519db3b2c1b1 100644 --- a/pub/lib/fregistry.cpp +++ b/pub/lib/fregistry.cpp @@ -47,7 +47,7 @@ void SFuncRegistry::display_operators() const for( auto f: FList ){ if( !f->precedence ) continue; - cout << " " << f->explanation << "\n"; + cout << " " << f->explanation << "\n"; } } diff --git a/pub/lib/geni.cpp b/pub/lib/geni.cpp index 8361456e83c66eca681f351653cd5207dc3779d0..d414479341f0ee257616257af46351b25d5479e4 100644 --- a/pub/lib/geni.cpp +++ b/pub/lib/geni.cpp @@ -283,7 +283,7 @@ void NGeni::display_genis() cout << "Implemented functionals:\n"; for( auto g = glist.begin(); g!=glist.end(); ++g ) { string s1 = (*g)->name + "(" + (*g)->default_arg_str + ")"; - cout << " " << str( format("%-14s") % s1 ) << (*g)->com << "\n"; + cout << " " << str( format("%-14s") % s1 ) << (*g)->com << "\n"; } } diff --git a/pub/lib/integrate.cpp b/pub/lib/integrate.cpp index fa0bbffdd477f9ad3965ac7dc5cf9dff6cde55ee..73d64492b8172e03b2e59e399c991223fd8b0b99 100644 --- a/pub/lib/integrate.cpp +++ b/pub/lib/integrate.cpp @@ -151,13 +151,17 @@ void CCvin::register_me() const void NCvin::display_cvins() { - cout << "Curve functionals:\n"; + cout << "Dimension-reducing functionals of curves.\n"; + cout << "Usage:\n"; + cout << " - most typically in command 'oi'\n"; + cout << " - also directly at the command prompt (pocket-calculator mode, only for nj=1)\n"; + cout << "Implemented functionals:\n"; for( auto g = hlist.begin(); g!=hlist.end(); ++g ) { string s1 = (*g)->txt + "(a"; if( (*g)->narg>1 ) s1 += ",b"; s1 += ")"; - cout << " " << str( format("%-14s") % s1 ) << (*g)->com << "\n"; + cout << " " << str( format("%-14s") % s1 ) << (*g)->com << "\n"; } } @@ -165,5 +169,5 @@ void NCvin::initialize() { // operators by precedence (as in xax_yacc.ypp): (new CCvin( "integrate", 2, "-inf,inf", cvin_integrate, - "integrate curve from a to b" ))->register_me(); + "numerical integration of curve from a to b" ))->register_me(); }