Skip to content

Commit c0d3b8f

Browse files
dtivelgoofballLogic
authored andcommitted
Memoize counts. (#30)
1 parent 66f585b commit c0d3b8f

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

build.ps1

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ $CLIRoot = Join-Path $RepoRoot 'cli'
1010
$DotNetExe = Join-Path $CLIRoot 'dotnet.exe'
1111
$NuGetExe = Join-Path $RepoRoot '.nuget\nuget.exe'
1212

13+
14+
if (Test-Path $ArtifactsDir)
15+
{
16+
rm -r $ArtifactsDir -Force | Out-Null
17+
}
18+
1319
Function Error-Log {
1420
param(
1521
[string]$ErrorMessage,
@@ -31,8 +37,6 @@ Function Trace-Time() {
3137

3238
$Global:LastTraceTime = Get-Date
3339

34-
rm -r $ArtifactsDir -Force | Out-Null
35-
3640
New-Item -ItemType Directory -Force -Path $CLIRoot | Out-Null
3741
New-Item -ItemType Directory -Force -Path $ArtifactsDir | Out-Null
3842

src/json-ld.net/Core/JsonLdUtils.cs

+6-4
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,16 @@ public static bool DeepCompare(JToken v1, JToken v2, bool listOrderMatters)
8888
{
8989
JArray l1 = (JArray)v1;
9090
JArray l2 = (JArray)v2;
91-
if (l1.Count != l2.Count)
91+
var l1Count = l1.Count;
92+
var l2Count = l2.Count;
93+
if (l1Count != l2Count)
9294
{
9395
return false;
9496
}
9597
// used to mark members of l2 that we have already matched to avoid
9698
// matching the same item twice for lists that have duplicates
97-
bool[] alreadyMatched = new bool[l2.Count];
98-
for (int i = 0; i < l1.Count; i++)
99+
bool[] alreadyMatched = new bool[l2Count];
100+
for (int i = 0; i < l1Count; i++)
99101
{
100102
JToken o1 = l1[i];
101103
bool gotmatch = false;
@@ -105,7 +107,7 @@ public static bool DeepCompare(JToken v1, JToken v2, bool listOrderMatters)
105107
}
106108
else
107109
{
108-
for (int j = 0; j < l2.Count; j++)
110+
for (int j = 0; j < l2Count; j++)
109111
{
110112
if (!alreadyMatched[j] && DeepCompare(o1, l2[j], listOrderMatters))
111113
{

0 commit comments

Comments
 (0)