xref: /trunk/main/sccomp/source/solver/solver.src (revision 91144cd0085a7583d2099b982122deb2184ab956)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "solver.hrc"
25
26String RID_SOLVER_COMPONENT
27{
28    Text [ en-US ] = "%PRODUCTNAME Linear Solver";
29};
30
31String RID_PROPERTY_NONNEGATIVE
32{
33    Text [ en-US ] = "Assume variables as non-negative";
34};
35String RID_PROPERTY_INTEGER
36{
37    Text [ en-US ] = "Assume variables as integer";
38};
39String RID_PROPERTY_TIMEOUT
40{
41    Text [ en-US ] = "Solving time limit (seconds)";
42};
43String RID_PROPERTY_EPSILONLEVEL
44{
45    Text [ en-US ] = "Epsilon level (0-3)";
46};
47String RID_PROPERTY_LIMITBBDEPTH
48{
49    Text [ en-US ] = "Limit branch-and-bound depth";
50};
51String RID_PROPERTY_NONLINEARTEST
52{
53    Text [ en-US ] = "Run strict linearity checks";
54};
55
56String RID_ERROR_NONLINEAR
57{
58    Text [ en-US ] = "The model seems nonlinear (see options).";
59};
60String RID_ERROR_EPSILONLEVEL
61{
62    Text [ en-US ] = "The epsilon level is invalid.";
63};
64String RID_ERROR_INFEASIBLE
65{
66    Text [ en-US ] = "The model is infeasible. Check limiting conditions.";
67};
68String RID_ERROR_UNBOUNDED
69{
70    Text [ en-US ] = "The model is unbounded.";
71};
72String RID_ERROR_ITERATIONLIMIT
73{
74    Text [ en-US ] = "Iteration limit reached.";
75};
76String RID_ERROR_SOLVERERROR
77{
78    Text [ en-US ] = "Numerical solver error.";
79};
80String RID_ERROR_USERSTOP
81{
82    Text [ en-US ] = "User/callback cancellation.";
83};
84String RID_ERROR_UNKNOWN
85{
86    Text [ en-US ] = "Unrecognized status.";
87};
88String RID_ERROR_INVALIDMODEL
89{
90    Text [ en-US ] = "Invalid internal generated model.";
91};
92