We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 070a2b2 commit 8fa5818Copy full SHA for 8fa5818
.gitignore
@@ -11,7 +11,6 @@
11
# build #
12
###############
13
build
14
-config.h
15
16
17
# config #
keep_stable.txt
@@ -1,3 +1,4 @@
1
keep_stable.txt
2
README.md
3
configure
4
+.gitignore
src/config.h
@@ -0,0 +1,15 @@
+#ifndef __LTP_CONFIG_H__
+#define __LTP_CONFIG_H__
+
+#define LTP_VERSION "3.3.1"
5
6
+#define BOOST_ALL_NO_LIB
7
8
+namespace ltp {
9
10
+const double EPS = 1e-8;
+const double NEG_INF = -1e20;
+}
+#endif // end for __LTP_CONFIG_H__
0 commit comments