forked from hankcs/HanLP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEdge.java
More file actions
34 lines (32 loc) · 845 Bytes
/
Edge.java
File metadata and controls
34 lines (32 loc) · 845 Bytes
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
/*
* <summary></summary>
* <author>He Han</author>
* <email>hankcs.cn@gmail.com</email>
* <create-date>2014/05/2014/5/21 19:33</create-date>
*
* <copyright file="Edge.java" company="上海林原信息科技有限公司">
* Copyright (c) 2003-2014, 上海林原信息科技有限公司. All Right Reserved, http://www.linrunsoft.com/
* This source is subject to the LinrunSpace License. Please contact 上海林原信息科技有限公司 to get more information.
* </copyright>
*/
package com.hankcs.hanlp.seg.common;
/**
* 基础边,不允许构造
* @author hankcs
*/
public class Edge
{
/**
* 花费
*/
public double weight;
/**
* 节点名字,调试用
*/
String name;
protected Edge(double weight, String name)
{
this.weight = weight;
this.name = name;
}
}