Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libcaml-grew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
grew
libcaml-grew
Commits
c5661457
Commit
c5661457
authored
Apr 25, 2017
by
Bruno Guillaume
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version 0.42.2: Fix ordering of dependencies in conll output
parent
ab12f7f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
CHANGES
CHANGES
+3
-0
VERSION
VERSION
+1
-1
src/grew_graph.ml
src/grew_graph.ml
+2
-2
No files found.
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