Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
grew
libcaml-grew
Commits
c5661457
Commit
c5661457
authored
Apr 25, 2017
by
Bruno Guillaume
Browse files
version 0.42.2: Fix ordering of dependencies in conll output
parent
ab12f7f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c5661457
Version 0.42.2 (2017/04/25)
* Fix ordering of dependencies in conll output
Version 0.42.1 (2017/04/19)
* Fix json export (missing commmands)
...
...
VERSION
View file @
c5661457
0.42.1
\ No newline at end of file
0.42.2
\ No newline at end of file
src/grew_graph.ml
View file @
c5661457
...
...
@@ -956,9 +956,9 @@ module G_graph = struct
let
sorted_gov_labs
=
List
.
sort
(
fun
(
g1
,
l1
)
(
g2
,
l2
)
->
if
l1
<>
""
&&
l1
.
[
0
]
<>
'
I'
&&
l1
.
[
0
]
<>
'
D'
if
l1
<>
""
&&
l1
.
[
0
]
<>
'
I'
&&
l1
.
[
0
]
<>
'
D'
&&
l1
.
[
0
]
<>
'
E'
then
-
1
else
if
l2
<>
""
&&
l2
.
[
0
]
<>
'
I'
&&
l2
.
[
0
]
<>
'
D'
else
if
l2
<>
""
&&
l2
.
[
0
]
<>
'
I'
&&
l2
.
[
0
]
<>
'
D'
&&
l2
.
[
0
]
<>
'
E'
then
1
else
match
compare
(
String_
.
to_float
g1
)
(
String_
.
to_float
g2
)
with
...
...
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