diff options
| author | Hugo Herbelin | 2020-02-10 16:06:50 +0100 |
|---|---|---|
| committer | Hugo Herbelin | 2020-02-11 13:29:58 +0100 |
| commit | 8b1bd5bb6bb66a578969e0a4f8c535a3718bba8c (patch) | |
| tree | 00505e30212641ee01c1bd5e837640bf7b7e6837 /kernel/float64.ml | |
| parent | d310030a70c972bd6d4fd23b979a7cfd809e000f (diff) | |
Another micro-improvement in printing "fix".
Set Printing Width 20.
Check fix my_long_fix
(my_induction_variable y z t u v w x' y' z' t' u' v' w' : nat)
(a b c d e f a' b' c' d' e' f' : bool) :=
match my_induction_variable with
| 0 => 0
| S my_recursive_variable => my_recursive_variable
end.
gives:
fix my_long_fix
(my_induction_variable
y z t u v w x'
y' z' t' u' v'
w' : nat)
(a b c d e f a'
b' c' d' e'
f' : bool)
{struct
my_induction_variable} :
nat :=
match
my_induction_variable
with
| 0 => 0
| S
my_recursive_variable =>
my_recursive_variable
end
instead of:
fix
my_long_fix (my_induction_variable
y z t u
v w x'
y' z'
t' u'
v'
w' : nat)
(a b c
d e f
a' b'
c' d'
e'
f' : bool)
{struct
my_induction_variable} :
nat :=
match
my_induction_variable
with
| 0 => 0
| S
my_recursive_variable =>
my_recursive_variable
end
Diffstat (limited to 'kernel/float64.ml')
0 files changed, 0 insertions, 0 deletions
