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}; 51 52String RID_ERROR_NONLINEAR 53{ 54 Text [ en-US ] = "The model is not linear."; 55}; 56String RID_ERROR_EPSILONLEVEL 57{ 58 Text [ en-US ] = "The epsilon level is invalid."; 59}; 60String RID_ERROR_INFEASIBLE 61{ 62 Text [ en-US ] = "The model is infeasible. Check limiting conditions."; 63}; 64String RID_ERROR_UNBOUNDED 65{ 66 Text [ en-US ] = "The model is unbounded."; 67}; 68String RID_ERROR_TIMEOUT 69{ 70 Text [ en-US ] = "The time limit was reached."; 71}; 72 73