Skip to content

Commit

Permalink
fix doxygen warnings on partially documented arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
svigerske committed Jul 4, 2024
1 parent c3b717e commit e10e5c7
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Apps/AmplSolver/AmplTNLP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,18 +322,18 @@ class IPOPTAMPLINTERFACELIB_EXPORT AmplTNLP: public TNLP
* @since 3.14.0
*/
AmplTNLP(
const SmartPtr<const Journalist>& jnlst,
const SmartPtr<RegisteredOptions> regoptions,
const SmartPtr<OptionsList> options,
const char* const* argv,
SmartPtr<AmplSuffixHandler> suffix_handler = NULL,
bool allow_discrete = false,
SmartPtr<AmplOptionsList> ampl_options_list = NULL,
const char* ampl_option_string = NULL,
const char* ampl_invokation_string = NULL,
const char* ampl_banner_string = NULL,
std::string* nl_file_content = NULL,
bool checkinterrupt = false ///< @since 3.14.17
const SmartPtr<const Journalist>& jnlst, ///< Journalist
const SmartPtr<RegisteredOptions> regoptions, ///< Options handler
const SmartPtr<OptionsList> options, ///< Options
const char* const* argv, ///< command line arguments with .nl file
SmartPtr<AmplSuffixHandler> suffix_handler = NULL, ///< optional suffix handler
bool allow_discrete = false, ///< whether to print warning when discrete variables appear
SmartPtr<AmplOptionsList> ampl_options_list = NULL, ///< AMPL options list
const char* ampl_option_string = NULL, ///< AMPL options strings
const char* ampl_invokation_string = NULL, ///< AMPL invokation string
const char* ampl_banner_string = NULL, ///< AMPL banner
std::string* nl_file_content = NULL, ///< alternative .nl input
bool checkinterrupt = false ///< whether to check for interrupt signals @since 3.14.17
);

/** Constructor without RegisteredOptions.
Expand Down

0 comments on commit e10e5c7

Please sign in to comment.