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
why3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
119
Issues
119
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Why3
why3
Commits
6b95cbe2
Commit
6b95cbe2
authored
Feb 09, 2010
by
Jean-Christophe Filliâtre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
headers
parent
c53c27eb
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
180 additions
and
35 deletions
+180
-35
Makefile.in
Makefile.in
+6
-19
configure.in
configure.in
+3
-14
misc/headache_config.txt
misc/headache_config.txt
+12
-0
misc/header.txt
misc/header.txt
+13
-0
src/hashcons.ml
src/hashcons.ml
+2
-1
src/hashcons.mli
src/hashcons.mli
+2
-1
src/main.ml
src/main.ml
+16
-0
src/misc.ml
src/misc.ml
+16
-0
src/name.ml
src/name.ml
+16
-0
src/name.mli
src/name.mli
+16
-0
src/term.ml
src/term.ml
+15
-0
src/term.mli
src/term.mli
+15
-0
src/ty.ml
src/ty.ml
+16
-0
src/ty.mli
src/ty.mli
+16
-0
src/typing.ml
src/typing.ml
+16
-0
No files found.
Makefile.in
View file @
6b95cbe2
##########################################################################
# #
# The Why platform for program certification #
# Copyright (C) 2002-2008 #
# Romain BARDOU #
# Jean-Franois COUCHOT #
# Mehdi DOGGUY #
# Jean-Christophe FILLITRE #
# Thierry HUBERT #
# Claude MARCH #
# Yannick MOY #
# Christine PAULIN #
# Yann RGIS-GIANAS #
# Nicolas ROUSSET #
# Xavier URBAIN #
# Copyright (C) Francois Bobot, Jean-Christophe Filliatre, #
# Johannes Kanig and Andrei Paskevich. #
# #
# This software is free software; you can redistribute it and/or #
# modify it under the terms of the GNU Library General Public #
# License version 2
, with the special exception on linking
#
# License version 2
.1, with the special exception on linking
#
# described in file LICENSE. #
# #
# This software is distributed in the hope that it will be useful, #
...
...
@@ -1136,11 +1125,9 @@ binary: $(ALLBINARYFILES)
# file headers
##############
headers
:
headache
-c
doc/headache_config.txt
-h
doc/header.txt
\
Makefile.in configure.in README
\
*
/
*
.ml
*
/
*
.ml[ily4] tools/
*
.c bench/c/good/
*
.c
\
bench/java/good/
*
.java
\
doc/
*
.tex
headache
-c
misc/headache_config.txt
-h
misc/header.txt
\
Makefile.in configure.in
\
*
/
*
.ml
*
/
*
.ml[ily4]
# myself
########
...
...
configure.in
View file @
6b95cbe2
##########################################################################
# #
# The Why platform for program certification #
# Copyright (C) 2002-2008 #
# Romain BARDOU #
# Jean-Franois COUCHOT #
# Mehdi DOGGUY #
# Jean-Christophe FILLITRE #
# Thierry HUBERT #
# Claude MARCH #
# Yannick MOY #
# Christine PAULIN #
# Yann RGIS-GIANAS #
# Nicolas ROUSSET #
# Xavier URBAIN #
# Copyright (C) Francois Bobot, Jean-Christophe Filliatre, #
# Johannes Kanig and Andrei Paskevich. #
# #
# This software is free software; you can redistribute it and/or #
# modify it under the terms of the GNU Library General Public #
# License version 2
, with the special exception on linking
#
# License version 2
.1, with the special exception on linking
#
# described in file LICENSE. #
# #
# This software is distributed in the hope that it will be useful, #
...
...
misc/headache_config.txt
0 → 100644
View file @
6b95cbe2
# Objective Caml source
| ".*\\.ml[il4]?" -> frame open:"(*" line:"*" close:"*)"
| ".*\\.ml[il4]?\\.in" -> frame open:"(*" line:"*" close:"*)"
| ".*\\.mly" -> frame open:"/*" line:"*" close:"*/"
# C source
| ".*\\.c" -> frame open:"/*" line:"*" close:"*/"
# Misc
| "configure.in" -> frame open:"#" line:"#" close:"#"
| "Makefile.in" -> frame open:"#" line:"#" close:"#"
| "Makefile" -> frame open:"#" line:"#" close:"#"
| "README.*" -> frame open:"*" line:"*" close:"*"
| "META.in" -> no
misc/header.txt
0 → 100644
View file @
6b95cbe2
Copyright (C) Francois Bobot, Jean-Christophe Filliatre,
Johannes Kanig and Andrei Paskevich.
This software is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2.1, with the special exception on linking
described in file LICENSE.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
src/hashcons.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Jean-Christophe Filliatre *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
...
...
src/hashcons.mli
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Jean-Christophe Filliatre *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
...
...
src/main.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
open
Term
open
Typing
...
...
src/misc.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
let
combine
n
acc
=
let
r
=
acc
*
65599
+
n
in
if
r
<
0
then
...
...
src/name.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
t
=
{
tag
:
int
;
name
:
string
}
let
fresh
=
...
...
src/name.mli
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
t
(** the type of Names *)
...
...
src/term.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
label
=
string
...
...
src/term.mli
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
label
...
...
src/ty.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
node
=
|
BVar
of
int
|
Var
of
Name
.
t
...
...
src/ty.mli
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
type
node
=
private
|
BVar
of
int
|
Var
of
Name
.
t
...
...
src/typing.ml
View file @
6b95cbe2
(**************************************************************************)
(* *)
(* Copyright (C) Francois Bobot, Jean-Christophe Filliatre, *)
(* Johannes Kanig and Andrei Paskevich. *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
open
Term
module
Env
:
sig
...
...
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