-
Notifications
You must be signed in to change notification settings - Fork 272
/
LogicArray.cs
70 lines (63 loc) · 1.67 KB
/
LogicArray.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
namespace Benchstone.BenchI
{
[BenchmarkCategory(Categories.Runtime, Categories.Benchstones, Categories.JIT, Categories.BenchI)]
public class LogicArray
{
public const int Iterations = 3000;
struct Workarea
{
public int X;
public int[][] A;
}
static T[][] AllocArray<T>(int n1, int n2) {
T[][] a = new T[n1][];
for (int i = 0; i < n1; ++i) {
a[i] = new T[n2];
}
return a;
}
static bool Inner(ref Workarea cmn) {
int i, j, k;
cmn.X = 0;
for (i = 1; i <= 50; i++) {
for (j = 1; j <= 50; j++) {
cmn.A[i][j] = 1;
}
}
for (k = 1; k <= 50; k++) {
for (j = 1; j <= 50; j++) {
i = 1;
do {
cmn.X = cmn.X | cmn.A[i][j] & cmn.A[i + 1][k];
i = i + 2;
} while (i <= 50);
}
}
if (cmn.X != 1) {
return false;
}
else {
return true;
}
}
[Benchmark(Description = nameof(LogicArray))]
public bool Test() {
Workarea cmn = new Workarea();
cmn.X = 0;
cmn.A = AllocArray<int>(51, 51);
for (int n = 1; n <= Iterations; n++) {
bool result = Inner(ref cmn);
if (!result) {
return false;
}
}
return true;
}
}
}