xref: /aoo42x/main/sccomp/source/solver/solver.src (revision 668c91ce)
1*668c91ceSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*668c91ceSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*668c91ceSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*668c91ceSAndrew Rist * distributed with this work for additional information
6*668c91ceSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*668c91ceSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*668c91ceSAndrew Rist * "License"); you may not use this file except in compliance
9*668c91ceSAndrew Rist * with the License.  You may obtain a copy of the License at
10*668c91ceSAndrew Rist *
11*668c91ceSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*668c91ceSAndrew Rist *
13*668c91ceSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*668c91ceSAndrew Rist * software distributed under the License is distributed on an
15*668c91ceSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*668c91ceSAndrew Rist * KIND, either express or implied.  See the License for the
17*668c91ceSAndrew Rist * specific language governing permissions and limitations
18*668c91ceSAndrew Rist * under the License.
19*668c91ceSAndrew Rist *
20*668c91ceSAndrew Rist *************************************************************/
21*668c91ceSAndrew Rist
22*668c91ceSAndrew 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};
51cdf0e10cSrcweir
52cdf0e10cSrcweirString RID_ERROR_NONLINEAR
53cdf0e10cSrcweir{
54cdf0e10cSrcweir    Text [ en-US ] = "The model is not linear.";
55cdf0e10cSrcweir};
56cdf0e10cSrcweirString RID_ERROR_EPSILONLEVEL
57cdf0e10cSrcweir{
58cdf0e10cSrcweir    Text [ en-US ] = "The epsilon level is invalid.";
59cdf0e10cSrcweir};
60cdf0e10cSrcweirString RID_ERROR_INFEASIBLE
61cdf0e10cSrcweir{
62cdf0e10cSrcweir    Text [ en-US ] = "The model is infeasible. Check limiting conditions.";
63cdf0e10cSrcweir};
64cdf0e10cSrcweirString RID_ERROR_UNBOUNDED
65cdf0e10cSrcweir{
66cdf0e10cSrcweir    Text [ en-US ] = "The model is unbounded.";
67cdf0e10cSrcweir};
68cdf0e10cSrcweirString RID_ERROR_TIMEOUT
69cdf0e10cSrcweir{
70cdf0e10cSrcweir    Text [ en-US ] = "The time limit was reached.";
71cdf0e10cSrcweir};
72cdf0e10cSrcweir
73