hch
2025-09-04 62188b271cce5e3aec5ca40d58c30f08643e2f60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using Jace.Execution;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
 
namespace Jace
{
    public class JaceOptions
    {
        internal const int DefaultCacheMaximumSize = 500;
        internal const int DefaultCacheReductionSize = 50;
 
        public JaceOptions()
        {
            CultureInfo = CultureInfo.CurrentCulture;
            ExecutionMode = ExecutionMode.Compiled;
            CacheEnabled = true;
            OptimizerEnabled = true;
            CaseSensitive = false;
            DefaultFunctions = true;
            DefaultConstants = true;
            CacheMaximumSize = DefaultCacheMaximumSize;
            CacheReductionSize = DefaultCacheReductionSize;
        }
 
        /// <summary>
        /// The <see cref="CultureInfo"/> required for correctly reading floating poin numbers.
        /// </summary>
        public CultureInfo CultureInfo { get; set; }
 
        /// <summary>
        /// The execution mode that must be used for formula execution.
        /// </summary>
        public ExecutionMode ExecutionMode { get; set; }
 
        /// <summary>
        /// Enable or disable caching of mathematical formulas.
        /// </summary>
        public bool CacheEnabled { get; set; }
 
        /// <summary>
        /// Configure the maximum cache size for mathematical formulas.
        /// </summary>
        public int CacheMaximumSize { get; set; }
 
        /// <summary>
        /// Configure the cache reduction size for mathematical formulas.
        /// </summary>
        public int CacheReductionSize { get; set; }
 
        /// <summary>
        /// Enable or disable optimizing of formulas.
        /// </summary>
        public bool OptimizerEnabled { get; set; }
 
        /// <summary>
        /// Enable or disable converting to lower case. This parameter is the inverse of <see cref="CaseSensitive"/>.
        /// </summary>
        [Obsolete]
        public bool AdjustVariableCase { 
            get
            {
                return !CaseSensitive;
            }
            set
            {
                CaseSensitive = !value;
            }
        }
 
        /// <summary>
        /// Enable case sensitive or case insensitive processing mode.
        /// </summary>
        public bool CaseSensitive { get;  set; }
 
        /// <summary>
        /// Enable or disable the default functions.
        /// </summary>
        public bool DefaultFunctions { get; set; }
 
        /// <summary>
        /// Enable or disable the default constants.
        /// </summary>
        public bool DefaultConstants { get; set; }
    }
}