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}; 55String RID_ERROR_NONLINEAR 56{ 57 Text [ en-US ] = "The model seems nonlinear (see options)."; 58}; 59String RID_ERROR_EPSILONLEVEL 60{ 61 Text [ en-US ] = "The epsilon level is invalid."; 62}; 63String RID_ERROR_INFEASIBLE 64{ 65 Text [ en-US ] = "The model is infeasible. Check limiting conditions."; 66}; 67String RID_ERROR_UNBOUNDED 68{ 69 Text [ en-US ] = "The model is unbounded."; 70}; 71String RID_ERROR_TIMEOUT 72{ 73 Text [ en-US ] = "The time limit was reached."; 74}; 75 76