forked from microsoft/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MathSolver.h
151 lines (124 loc) · 3.43 KB
/
MathSolver.h
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#include "GraphingInterfaces/IMathSolver.h"
namespace MockGraphingImpl
{
class ParsingOptions : public Graphing::IParsingOptions
{
public:
void SetFormatType(Graphing::FormatType type) override
{
}
void SetLocalizationType(Graphing::LocalizationType value) override
{
}
};
class EvalOptions : public Graphing::IEvalOptions
{
public:
EvalOptions()
: m_unit(Graphing::EvalTrigUnitMode::Invalid)
{
}
Graphing::EvalTrigUnitMode GetTrigUnitMode() const override
{
return m_unit;
}
void SetTrigUnitMode(Graphing::EvalTrigUnitMode value) override
{
m_unit = value;
}
private:
Graphing::EvalTrigUnitMode m_unit;
};
class FormatOptions : public Graphing::IFormatOptions
{
public:
void SetFormatType(Graphing::FormatType type) override
{
}
void SetMathMLPrefix(const std::wstring& value) override
{
}
void SetLocalizationType(Graphing::LocalizationType value) override
{
}
};
class MockExpression : public Graphing::IExpression
{
public:
MockExpression()
{
}
unsigned int GetExpressionID() const override
{
return 0;
}
bool IsEmptySet() const
{
return false;
}
};
class MockVariable : public Graphing::IVariable
{
public:
MockVariable()
{
}
int GetVariableID() const override
{
return 0;
}
const std::wstring& GetVariableName() override
{
return varName;
}
private:
const std::wstring& varName = L"m";
};
class MathSolver : public Graphing::IMathSolver
{
public:
MathSolver()
{
}
Graphing::IParsingOptions& ParsingOptions() override
{
return m_parsingOptions;
}
Graphing::IEvalOptions& EvalOptions() override
{
return m_evalOptions;
}
Graphing::IFormatOptions& FormatOptions() override
{
return m_formatOptions;
}
std::unique_ptr<Graphing::IExpression> ParseInput(const std::wstring& input, int& errorCodeOut, int& errorTypeOut) override
{
if (input.empty())
{
return nullptr;
}
return std::make_unique<MockExpression>(MockExpression{});
}
void HRErrorToErrorInfo(HRESULT hr, int& errorCodeOut, int& errorTypeOut)
{
}
std::shared_ptr<Graphing::IGraph> CreateGrapher(const Graphing::IExpression* expression) override;
std::shared_ptr<Graphing::IGraph> CreateGrapher() override;
std::wstring Serialize(const Graphing::IExpression* expression) override
{
return L"";
}
Graphing::IGraphFunctionAnalysisData IMathSolver::Analyze(const Graphing::Analyzer::IGraphAnalyzer* analyzer)
{
return Graphing::IGraphFunctionAnalysisData{};
}
private:
MockGraphingImpl::ParsingOptions m_parsingOptions;
MockGraphingImpl::EvalOptions m_evalOptions;
MockGraphingImpl::FormatOptions m_formatOptions;
};
}