(string param)
| 182 | static System.Collections.Generic.Dictionary<string, MItem> HAdic = InitHAUnitsDictionary(); |
| 183 | |
| 184 | public static MItem FindHA(string param) |
| 185 | { |
| 186 | if (!HAdic.ContainsKey(param)) |
| 187 | return unitless; |
| 188 | |
| 189 | // HACK: fix for SS-2414 |
| 190 | return SMath.Math.Decision.SymbolicCalculation(HAdic[param].ToEntry(), new SMath.Math.Store()); |
| 191 | //return HAdic[param]; |
| 192 | } |
| 193 | |
| 194 | static void matchInternal(MItem unit, SMath.Math.Numeric.TNumber val, ref SMath.Math.Store context) |
| 195 | { |
no outgoing calls
no test coverage detected