xref: /trunk/main/sccomp/source/solver/solver.src (revision b1f1da72)
1668c91ceSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3668c91ceSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4668c91ceSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5668c91ceSAndrew Rist * distributed with this work for additional information
6668c91ceSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7668c91ceSAndrew Rist * to you under the Apache License, Version 2.0 (the
8668c91ceSAndrew Rist * "License"); you may not use this file except in compliance
9668c91ceSAndrew Rist * with the License.  You may obtain a copy of the License at
10668c91ceSAndrew Rist *
11668c91ceSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12668c91ceSAndrew Rist *
13668c91ceSAndrew Rist * Unless required by applicable law or agreed to in writing,
14668c91ceSAndrew Rist * software distributed under the License is distributed on an
15668c91ceSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16668c91ceSAndrew Rist * KIND, either express or implied.  See the License for the
17668c91ceSAndrew Rist * specific language governing permissions and limitations
18668c91ceSAndrew Rist * under the License.
19668c91ceSAndrew Rist *
20668c91ceSAndrew Rist *************************************************************/
21668c91ceSAndrew Rist
22668c91ceSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "solver.hrc"
25cdf0e10cSrcweir
26cdf0e10cSrcweirString RID_SOLVER_COMPONENT
27cdf0e10cSrcweir{
28cdf0e10cSrcweir    Text [ en-US ] = "%PRODUCTNAME Linear Solver";
29cdf0e10cSrcweir};
30cdf0e10cSrcweir
31cdf0e10cSrcweirString RID_PROPERTY_NONNEGATIVE
32cdf0e10cSrcweir{
33cdf0e10cSrcweir    Text [ en-US ] = "Assume variables as non-negative";
34cdf0e10cSrcweir};
35cdf0e10cSrcweirString RID_PROPERTY_INTEGER
36cdf0e10cSrcweir{
37cdf0e10cSrcweir    Text [ en-US ] = "Assume variables as integer";
38cdf0e10cSrcweir};
39cdf0e10cSrcweirString RID_PROPERTY_TIMEOUT
40cdf0e10cSrcweir{
41cdf0e10cSrcweir    Text [ en-US ] = "Solving time limit (seconds)";
42cdf0e10cSrcweir};
43cdf0e10cSrcweirString RID_PROPERTY_EPSILONLEVEL
44cdf0e10cSrcweir{
45cdf0e10cSrcweir    Text [ en-US ] = "Epsilon level (0-3)";
46cdf0e10cSrcweir};
47cdf0e10cSrcweirString RID_PROPERTY_LIMITBBDEPTH
48cdf0e10cSrcweir{
49cdf0e10cSrcweir    Text [ en-US ] = "Limit branch-and-bound depth";
50cdf0e10cSrcweir};
51*b1f1da72SPedro GiffuniString RID_PROPERTY_NONLINEARTEST
52*b1f1da72SPedro Giffuni{
53*b1f1da72SPedro Giffuni    Text [ en-US ] = "Run strict linearity checks";
54*b1f1da72SPedro Giffuni};
55cdf0e10cSrcweirString RID_ERROR_NONLINEAR
56cdf0e10cSrcweir{
57*b1f1da72SPedro Giffuni    Text [ en-US ] = "The model seems nonlinear (see options).";
58cdf0e10cSrcweir};
59cdf0e10cSrcweirString RID_ERROR_EPSILONLEVEL
60cdf0e10cSrcweir{
61cdf0e10cSrcweir    Text [ en-US ] = "The epsilon level is invalid.";
62cdf0e10cSrcweir};
63cdf0e10cSrcweirString RID_ERROR_INFEASIBLE
64cdf0e10cSrcweir{
65cdf0e10cSrcweir    Text [ en-US ] = "The model is infeasible. Check limiting conditions.";
66cdf0e10cSrcweir};
67cdf0e10cSrcweirString RID_ERROR_UNBOUNDED
68cdf0e10cSrcweir{
69cdf0e10cSrcweir    Text [ en-US ] = "The model is unbounded.";
70cdf0e10cSrcweir};
71cdf0e10cSrcweirString RID_ERROR_TIMEOUT
72cdf0e10cSrcweir{
73cdf0e10cSrcweir    Text [ en-US ] = "The time limit was reached.";
74cdf0e10cSrcweir};
75cdf0e10cSrcweir
76