-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatchReport.cs
More file actions
25 lines (22 loc) · 755 Bytes
/
MatchReport.cs
File metadata and controls
25 lines (22 loc) · 755 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChannelMixMatcher
{
class MatchReport
{
public string message = "";
public bool error = false;
public float[,] best_matrix = null;
public float[,] matching_range = null; // 9,2 matrix containing min and max values for each part of the matrix, as it gets progressively more precise
public MatchReport(string Amessage, bool Aerror = false, float[,] Abest_matrix = null, float[,] Amatching_range = null)
{
message = Amessage;
error = Aerror;
best_matrix = Abest_matrix;
matching_range = Amatching_range;
}
}
}