Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/Meta/aircrfta.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,30 @@ aircrfta_meta = Dict(
:is_feasible => true,
:defined_everywhere => missing,
:origin => :unknown,
:notes => raw"""
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.
""",
:origin_notes => raw"""
SIF input: Ph. Toint, Dec 1989. classification NOR2-RN-8-5
""",
:reference => raw"""
Problem 9,
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.
""",
Comment on lines +36 to +42
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be better to have a clickable field (url / doi) and change reference to be a standardized format (BibTex ?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes.

)
get_aircrfta_nvar(; n::Integer = default_nvar, kwargs...) = 8
get_aircrfta_ncon(; n::Integer = default_nvar, kwargs...) = 5
Expand Down
20 changes: 0 additions & 20 deletions src/PureJuMP/aircrfta.jl
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...)
Expand Down
Loading