-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmzn_eval.Rd
More file actions
37 lines (30 loc) · 839 Bytes
/
Copy pathmzn_eval.Rd
File metadata and controls
37 lines (30 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{mzn_eval}
\alias{mzn_eval}
\title{MiniZinc model evaluation}
\usage{
mzn_eval(
lib_path = "",
r_model = NULL,
mzn_path = "",
model_string = "",
solver = "org.gecode.gecode",
dzn_path = "",
all_solutions = TRUE,
time_limit = 300000L
)
}
\arguments{
\item{lib_path}{the path of the library where the solver is present.}
\item{r_model}{R6 Model object}
\item{mzn_path}{path of the mzn file to be solved}
\item{model_string}{model string to be solved.}
\item{solver}{the name of the solver to use.}
\item{dzn_path}{path of the datafile to be used.}
\item{all_solutions}{bool to specify if all solutions are specified.}
\item{time_limit}{stop after <time_limit> milliseconds}
}
\description{
evaluates the MiniZinc model
}