DAGEdge

koalanlp/data. DAGEdge

DAG Edge를 저장합니다.

Constructor

new DAGEdge(valuenon-null)

Source:

DAG Edge를 구성합니다.

Parameters:
Name Type Description
value Object

DAG Edge 값 객체

Properties
Name Type Description
src Word

시점

dest Word

종점

label string

관계

Members

src :Word

Source:

Edge의 시작점. 의존구문분석인 경우 지배소, 의미역인 경우 동사.

Type:
  • Word

dest :Word

Source:

Edge의 종점. 의존구문분석인 경우 피지배소, 의미역인 경우 논항.

Type:
  • Word

label

Source:

Edge가 나타내는 관계.

Methods

getSrc() → {Word}

Source:
Returns:

Edge의 시작점. 의존구문분석인 경우 지배소, 의미역인 경우 동사.

Type
Word

getDest() → {Word}

Source:
Returns:

Edge의 종점. 의존구문분석인 경우 피지배소, 의미역인 경우 논항.

Type
Word

getLabel()

Source:

Edge가 나타내는 관계.

toString()

Source:

equals(other) → {boolean}

Source:

두 DAG Edge가 같은지 비교합니다.

Parameters:
Name Type Description
other

비교할 대상

Returns:

같은 정보를 담고 있다면 true

Type
boolean