Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed Jul 26, 2024
1 parent 52045dd commit f15cc49
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[maybe] 实现 `Entity``Attribute` 在类型上的差别

- `Context` 需要用 `QuotientSet` 而不是 `Set`

# lattice layout

练习 order book 中计算 concept lattice 的算法。
Expand Down
15 changes: 15 additions & 0 deletions src/test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export class Entity extends String {
isEntity: true = true

constructor(value: string) {
super(value)
}
}

export class Attribute extends String {
isAttribute: true = true

constructor(value: string) {
super(value)
}
}

0 comments on commit f15cc49

Please sign in to comment.