resultsGurobiNumericalOptimizeSearch: Query the Gurobi Results

View source: R/gurobi_numerical_optimization_search.R

resultsGurobiNumericalOptimizeSearchR Documentation

Query the Gurobi Results

Description

Returns the results (thus far) of the Gurobi numerical optimization design search

Usage

resultsGurobiNumericalOptimizeSearch(obj)

Arguments

obj

The gurobi_numerical_optimization_experimental_design_search object that is currently running the search

Author(s)

Adam Kapelner

Examples

## Not run: 
if ("gurobi" %in% loadedNamespaces()) {
  set.seed(1)
  X = matrix(rnorm(12), nrow = 6)
  gobj = initGurobiNumericalOptimizationExperimentalDesignObject(
    X,
    r = 2,
    num_cores = 1,
    initial_time_limit_sec = 5,
    verbose = FALSE
  )
  res = resultsGurobiNumericalOptimizeSearch(gobj)
  res$obj_vals
}

## End(Not run)

GreedyExperimentalDesign documentation built on Jan. 9, 2026, 5:07 p.m.