1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.hipparchus.optim;
23
24 import java.util.Locale;
25 import java.util.MissingResourceException;
26 import java.util.ResourceBundle;
27
28 import org.hipparchus.exception.Localizable;
29 import org.hipparchus.exception.UTF8Control;
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 public enum LocalizedOptimFormats implements Localizable {
46
47
48 EQUAL_VERTICES_IN_SIMPLEX("equal vertices {0} and {1} in simplex configuration"),
49
50
51 INVALID_IMPLEMENTATION("required functionality is missing in {0}"),
52
53
54 NO_FEASIBLE_SOLUTION("no feasible solution"),
55
56
57 SIMPLEX_NEED_ONE_POINT("simplex must contain at least one point"),
58
59
60 TOO_SMALL_COST_RELATIVE_TOLERANCE("cost relative tolerance is too small ({0}), no further reduction in the sum of squares is possible"),
61
62
63 TOO_SMALL_ORTHOGONALITY_TOLERANCE("orthogonality tolerance is too small ({0}), solution is orthogonal to the jacobian"),
64
65
66 TOO_SMALL_PARAMETERS_RELATIVE_TOLERANCE("parameters relative tolerance is too small ({0}), no further improvement in the approximate solution is possible"),
67
68
69 TRUST_REGION_STEP_FAILED("trust region step has failed to reduce Q"),
70
71
72 UNABLE_TO_PERFORM_QR_DECOMPOSITION_ON_JACOBIAN("unable to perform Q.R decomposition on the {0}x{1} jacobian matrix"),
73
74
75 UNABLE_TO_SOLVE_SINGULAR_PROBLEM("unable to solve: singular problem"),
76
77
78 UNBOUNDED_SOLUTION("unbounded solution"),
79
80
81 CONSTRAINTS_RANK("rank of constraints must be lesser than domain dimension, but {0} >= {1}");
82
83
84 private final String sourceFormat;
85
86
87
88
89
90 LocalizedOptimFormats(final String sourceFormat) {
91 this.sourceFormat = sourceFormat;
92 }
93
94
95 @Override
96 public String getSourceString() {
97 return sourceFormat;
98 }
99
100
101 @Override
102 public String getLocalizedString(final Locale locale) {
103 try {
104 final String path = LocalizedOptimFormats.class.getName().replaceAll("\\.", "/");
105 ResourceBundle bundle =
106 ResourceBundle.getBundle("assets/" + path, locale, new UTF8Control());
107 if (bundle.getLocale().getLanguage().equals(locale.getLanguage())) {
108 final String translated = bundle.getString(name());
109 if ((translated != null) &&
110 (translated.length() > 0) &&
111 (!translated.toLowerCase(locale).contains("missing translation"))) {
112
113 return translated;
114 }
115 }
116
117 } catch (MissingResourceException mre) {
118
119 }
120
121
122
123 return sourceFormat;
124
125 }
126
127 }