solnp_problems_table {Rsolnp}R Documentation

List of Valid Test Problems for the SOLNP Suite

Description

Returns a data.frame of known and registered test problems used with the SOLNP solver. The list includes problems from the Hock-Schittkowski suite as well as a selection of other classic optimization problems.

Usage

solnp_problems_table()

Details

Value

A data.frame with the following columns:

Suite

A character string indicating the suite the problem belongs to. One of “Hock-Schittkowski” or “Other”.

Problem

The base name of the problem function (without the ‘_problem’ suffix).

Number

An integer identifier used to index or request problems programmatically.

See Also

solnp_problem_suite()

Examples

# View all known problems
tail(solnp_problems_table())

# Filter only HS problems
head(subset(solnp_problems_table(), Suite == "Hock-Schittkowski"))


[Package Rsolnp version 2.0.1 Index]