Skip to content

Commit f7b49df

Browse files
authored
Merge pull request #47 from antvis/0.1.19
0.1.19
2 parents 544a1c3 + 7024c3e commit f7b49df

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# ChangeLog
22

3+
#### 0.1.19
4+
5+
- fix: GADDI matched failed problem;
6+
37
#### 0.1.18
48

5-
- feat: add one-hot data preprocessing
9+
- feat: add one-hot data preprocessing;
610

711
#### 0.1.17
812

packages/graph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/algorithm",
3-
"version": "0.1.18",
3+
"version": "0.1.19",
44
"description": "graph algorithm",
55
"keywords": [
66
"graph",

packages/graph/src/gaddi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ const GADDI = (
532532
k,
533533
nodeNum,
534534
maxNodePairNum,
535-
patternKNeighborUnits,
535+
kNeighborUnits,
536536
spm,
537537
);
538538

packages/graph/tests/unit/gaddi-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,4 +1107,4 @@ describe('Prune', () => {
11071107
// });
11081108
expect(result.length).toBe(1);
11091109
})
1110-
})
1110+
});

0 commit comments

Comments
 (0)