summaryrefslogtreecommitdiff
path: root/sccomp/source/solver/solver.src
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2008-02-15 14:19:59 +0000
committerNiklas Nebel <nn@openoffice.org>2008-02-15 14:19:59 +0000
commit6ba90804b5da7b7e5f2bf752da433aaae16c975b (patch)
tree5604f5feee0af95f5cc1b4e8fb8de524ac192b0a /sccomp/source/solver/solver.src
parent2e94ebf6116b0fb4a987697126ede783e54b9245 (diff)
moved from module scext
Diffstat (limited to 'sccomp/source/solver/solver.src')
-rw-r--r--sccomp/source/solver/solver.src84
1 files changed, 84 insertions, 0 deletions
diff --git a/sccomp/source/solver/solver.src b/sccomp/source/solver/solver.src
new file mode 100644
index 000000000000..756bfc5974b5
--- /dev/null
+++ b/sccomp/source/solver/solver.src
@@ -0,0 +1,84 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: solver.src,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: nn $ $Date: 2008-02-15 15:19:59 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+#include "solver.hrc"
+
+String RID_SOLVER_COMPONENT
+{
+ Text [ en-US ] = "%PRODUCTNAME Linear Solver";
+};
+
+String RID_PROPERTY_NONNEGATIVE
+{
+ Text [ en-US ] = "Assume variables as non-negative";
+};
+String RID_PROPERTY_INTEGER
+{
+ Text [ en-US ] = "Assume variables as integer";
+};
+String RID_PROPERTY_TIMEOUT
+{
+ Text [ en-US ] = "Solving time limit (seconds)";
+};
+String RID_PROPERTY_EPSILONLEVEL
+{
+ Text [ en-US ] = "Epsilon level (0-3)";
+};
+String RID_PROPERTY_LIMITBBDEPTH
+{
+ Text [ en-US ] = "Limit branch-and-bound depth";
+};
+
+String RID_ERROR_NONLINEAR
+{
+ Text [ en-US ] = "The model is not linear.";
+};
+String RID_ERROR_EPSILONLEVEL
+{
+ Text [ en-US ] = "The epsilon level is invalid.";
+};
+String RID_ERROR_INFEASIBLE
+{
+ Text [ en-US ] = "The model is infeasible. Check limiting conditions.";
+};
+String RID_ERROR_UNBOUNDED
+{
+ Text [ en-US ] = "The model is unbounded.";
+};
+String RID_ERROR_TIMEOUT
+{
+ Text [ en-US ] = "The time limit was reached.";
+};
+