-
Notifications
You must be signed in to change notification settings - Fork 48
Move doc from comments to meta (aircrfta) #407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,3 @@ | ||
| # | ||
| # Converted in Julia from https://github.com/mpf/Optimization-Test-Problems | ||
| # | ||
| # AMPL Model by Hande Y. Benson | ||
| # | ||
| # Copyright (C) 2001 Princeton University | ||
| # All Rights Reserved | ||
| # | ||
| # Permission to use, copy, modify, and distribute this software and | ||
| # its documentation for any purpose and without fee is hereby | ||
| # granted, provided that the above copyright notice appear in all | ||
| # copies and that the copyright notice and this | ||
| # permission notice appear in all supporting documentation. | ||
| # Source: Problem 9 in | ||
| # J.J. More',"A collection of nonlinear model problems" | ||
| # Proceedings of the AMS-SIAM Summer Seminar on the Computational | ||
| # Solution of Nonlinear Systems of Equations, Colorado, 1988. | ||
| # Argonne National Laboratory MCS-P60-0289, 1989. | ||
| # SIF input: Ph. Toint, Dec 1989. | ||
| # classification NOR2-RN-8-5 | ||
| export aircrfta | ||
|
|
||
| function aircrfta(; n::Int = default_nvar, kwargs...) | ||
|
Comment on lines
1
to
3
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The newly added
:url,:notes,:origin_notes, and:referencekeys are not part of the aggregatedOptimizationProblems.metaDataFrame (which only copies a fixed list of keys). If these fields are meant to be discoverable via the standard metadata interface, consider extendingcols_names/typesand the DataFrame population logic (or adding a documented accessor) so users can query them without reaching intoaircrfta_metadirectly.