Skip to content

Commit 8fa5818

Browse files
author
wxu
committed
modified : .gitignore keep_stable.txt
newfile : src/config.h
1 parent 070a2b2 commit 8fa5818

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# build #
1212
###############
1313
build
14-
config.h
1514

1615
###############
1716
# config #

keep_stable.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
keep_stable.txt
22
README.md
33
configure
4+
.gitignore

src/config.h

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#ifndef __LTP_CONFIG_H__
2+
#define __LTP_CONFIG_H__
3+
4+
#define LTP_VERSION "3.3.1"
5+
6+
#define BOOST_ALL_NO_LIB
7+
8+
namespace ltp {
9+
10+
const double EPS = 1e-8;
11+
const double NEG_INF = -1e20;
12+
13+
}
14+
15+
#endif // end for __LTP_CONFIG_H__

0 commit comments

Comments
 (0)