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
POTTIER Francois
menhir
Commits
ed989285
Commit
ed989285
authored
Jan 08, 2015
by
POTTIER Francois
Browse files
Added LinearizedArray to MenhirLib.
parent
af5963f0
Changes
5
Hide whitespace changes
Inline
Side-by-side
GNUmakefile
View file @
ed989285
...
...
@@ -79,6 +79,7 @@ DISTRIBUTED_FILES := AUTHORS CHANGES INSTALLATION LICENSE Makefile demos
LIBFILES
:=
\
src/standard.mly
\
src/infiniteArray.
{
ml,mli
}
\
src/LinearizedArray.
{
ml,mli
}
\
src/packedIntArray.
{
ml,mli
}
\
src/rowDisplacement.
{
ml,mli
}
\
src/IncrementalEngine.ml
\
...
...
LICENSE
View file @
ed989285
...
...
@@ -2,6 +2,7 @@ In the following, "the Library" refers to the following files:
src/standard.mly
src/infiniteArray.{ml,mli}
src/LinearizedArray.{ml,mli}
src/packedIntArray.{ml,mli}
src/rowDisplacement.{ml,mli}
src/IncrementalEngine.ml
...
...
src/_tags
View file @
ed989285
...
...
@@ -20,6 +20,7 @@
# and GNUmakefile in the toplevel directory, and update the file
# menhirLib.mlpack in this directory.
<infiniteArray.cmx>: for-pack(MenhirLib)
<LinearizedArray.cmx>: for-pack(MenhirLib)
<packedIntArray.cmx>: for-pack(MenhirLib)
<rowDisplacement.cmx>: for-pack(MenhirLib)
<IncrementalEngine.cmx>: for-pack(MenhirLib)
...
...
src/menhirLib.mlpack
View file @
ed989285
...
...
@@ -2,6 +2,7 @@
# and GNUmakefile in the toplevel directory, and update the file
# _tags in this directory.
InfiniteArray
LinearizedArray
PackedIntArray
RowDisplacement
IncrementalEngine
...
...
src/tableBackend.ml
View file @
ed989285
...
...
@@ -902,8 +902,8 @@ let production_defs2 () =
let
productions
:
int
array
array
=
Array
.
of_list
(
List
.
map
Array
.
of_list
productions
)
in
let
productions
:
int
LinearizedArray
.
t
=
LinearizedArray
.
make
productions
let
productions
:
int
MenhirLib
.
LinearizedArray
.
t
=
MenhirLib
.
LinearizedArray
.
make
productions
in
let
(
data
,
entry
)
=
productions
in
define_and_measure
(
...
...
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