logging.file {raptr} | R Documentation |
Log file
Description
This function returns the Gurobi log file (*.log) associated with solving an optimization problem.
Usage
logging.file(x, y)
## S3 method for class 'RapResults'
logging.file(x, y = 0)
## S3 method for class 'RapSolved'
logging.file(x, y = 0)
Arguments
x |
|
y |
Available inputs include: |
Note
The term logging file was used due to collisions with the log
function.
See Also
Examples
## Not run:
# load data
data(sim_rs)
# log file for the best solution
cat(logging.file(sim_rs, 0))
# log file for the second solution
cat(logging.file(sim_rs, 2))
# log files for all solutions
cat(logging.file(sim_rs, NULL))
## End(Not run)
[Package raptr version 1.0.1 Index]