Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libcaml-grew
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
7
Issues
7
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
grew
libcaml-grew
Commits
1a48ec80
Commit
1a48ec80
authored
Sep 16, 2018
by
Bruno Guillaume
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version 1.0.2
Fix problem with nodes names in “grew grep”
parent
6231e3d6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
CHANGES.md
CHANGES.md
+4
-1
VERSION
VERSION
+1
-1
src/grew_node.ml
src/grew_node.ml
+14
-2
No files found.
CHANGES.md
View file @
1a48ec80
## 1.0.2 (2018/09/16)
*
Fix problem with nodes names in “grew grep”
## 1.0.1 (2018/09/10)
## 1.0.1 (2018/09/10)
*
Fix error in MWE node contruction
*
Fix error in MWE node con
s
truction
# 1.0.0 (2018/09/10)
# 1.0.0 (2018/09/10)
*
/!
\
Change lexical rules syntax and lexicon representation
*
/!
\
Change lexical rules syntax and lexicon representation
...
...
VERSION
View file @
1a48ec80
1.0.
1
1.0.
2
src/grew_node.ml
View file @
1a48ec80
...
@@ -96,8 +96,20 @@ module G_node = struct
...
@@ -96,8 +96,20 @@ module G_node = struct
let
of_conll
?
loc
?
prec
?
succ
?
domain
line
=
let
of_conll
?
loc
?
prec
?
succ
?
domain
line
=
if
line
=
Conll
.
root
if
line
=
Conll
.
root
then
{
empty
with
conll_root
=
true
;
succ
;
position
=
Ordered
0
.
}
then
{
empty
with
else
{
empty
with
fs
=
G_fs
.
of_conll
?
loc
?
domain
line
;
position
=
Ordered
(
float_of_conll_id
line
.
Conll
.
id
);
prec
;
succ
;
efs
=
line
.
Conll
.
efs
}
conll_root
=
true
;
succ
;
position
=
Ordered
0
.;
name
=
Some
"ROOT"
;
}
else
{
empty
with
fs
=
G_fs
.
of_conll
?
loc
?
domain
line
;
position
=
Ordered
(
float_of_conll_id
line
.
Conll
.
id
);
prec
;
succ
;
efs
=
line
.
Conll
.
efs
;
name
=
Some
(
Conll_types
.
Id
.
to_string
line
.
Conll
.
id
)
}
let
pst_leaf
?
loc
?
domain
phon
position
=
let
pst_leaf
?
loc
?
domain
phon
position
=
{
empty
with
fs
=
G_fs
.
pst_leaf
?
loc
?
domain
phon
;
position
=
Ordered
(
float
position
)
}
{
empty
with
fs
=
G_fs
.
pst_leaf
?
loc
?
domain
phon
;
position
=
Ordered
(
float
position
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment