-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLem_string_extra.thy
More file actions
executable file
·139 lines (96 loc) · 4.58 KB
/
Lem_string_extra.thy
File metadata and controls
executable file
·139 lines (96 loc) · 4.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
chapter {* Generated by Lem from string_extra.lem. *}
theory "Lem_string_extra"
imports
Main
"Lem_num"
"Lem_list"
"Lem_basic_classes"
"Lem_string"
"Lem_list_extra"
begin
(******************************************************************************)
(* String functions *)
(******************************************************************************)
(*open import Basic_classes*)
(*open import Num*)
(*open import List*)
(*open import String*)
(*open import List_extra*)
(*open import {hol} `stringLib`*)
(*open import {hol} `ASCIInumbersTheory`*)
(******************************************************************************)
(* Character's to numbers *)
(******************************************************************************)
(*val ord : char -> nat*)
(*val chr : nat -> char*)
(******************************************************************************)
(* Converting to strings *)
(******************************************************************************)
(*val stringFromNatHelper : nat -> list char -> list char*)
function (sequential,domintros) stringFromNatHelper :: " nat \<Rightarrow>(char)list \<Rightarrow>(char)list " where
" stringFromNatHelper n acc1 = (
if n =( 0 :: nat) then
acc1
else
stringFromNatHelper (n div( 10 :: nat)) (char_of_nat ((n mod( 10 :: nat)) +( 48 :: nat)) # acc1))"
by pat_completeness auto
(*val stringFromNat : nat -> string*)
definition stringFromNat :: " nat \<Rightarrow> string " where
" stringFromNat n = (
if n =( 0 :: nat) then (''0'') else (stringFromNatHelper n []))"
(*val stringFromNaturalHelper : natural -> list char -> list char*)
function (sequential,domintros) stringFromNaturalHelper :: " nat \<Rightarrow>(char)list \<Rightarrow>(char)list " where
" stringFromNaturalHelper n acc1 = (
if n =( 0 :: nat) then
acc1
else
stringFromNaturalHelper (n div( 10 :: nat)) (char_of_nat ( ((n mod( 10 :: nat)) +( 48 :: nat))) # acc1))"
by pat_completeness auto
(*val stringFromNatural : natural -> string*)
definition stringFromNatural :: " nat \<Rightarrow> string " where
" stringFromNatural n = (
if n =( 0 :: nat) then (''0'') else (stringFromNaturalHelper n []))"
(*val stringFromInt : int -> string*)
definition stringFromInt :: " int \<Rightarrow> string " where
" stringFromInt i = (
if i <( 0 :: int) then
(''-'') @ stringFromNat (nat (abs i))
else
stringFromNat (nat (abs i)))"
(*val stringFromInteger : integer -> string*)
definition stringFromInteger :: " int \<Rightarrow> string " where
" stringFromInteger i = (
if i <( 0 :: int) then
(''-'') @ stringFromNatural (nat (abs i))
else
stringFromNatural (nat (abs i)))"
(******************************************************************************)
(* List-like operations *)
(******************************************************************************)
(*val nth : string -> nat -> char*)
definition nth :: " string \<Rightarrow> nat \<Rightarrow> char " where
" nth s n = ( List.nth ( s) n )"
(*val stringConcat : list string -> string*)
definition stringConcat :: "(string)list \<Rightarrow> string " where
" stringConcat s = (
List.foldr (op@) s (''''))"
(******************************************************************************)
(* String comparison *)
(******************************************************************************)
(*val stringCompare : string -> string -> ordering*)
definition stringLess :: " string \<Rightarrow> string \<Rightarrow> bool " where
" stringLess x y = ( orderingIsLess (EQ))"
definition stringLessEq :: " string \<Rightarrow> string \<Rightarrow> bool " where
" stringLessEq x y = ( \<not> (orderingIsGreater (EQ)))"
definition stringGreater :: " string \<Rightarrow> string \<Rightarrow> bool " where
" stringGreater x y = ( stringLess y x )"
definition stringGreaterEq :: " string \<Rightarrow> string \<Rightarrow> bool " where
" stringGreaterEq x y = ( stringLessEq y x )"
definition instance_Basic_classes_Ord_string_dict :: "(string)Ord_class " where
" instance_Basic_classes_Ord_string_dict = ((|
compare_method = (\<lambda> x y. EQ),
isLess_method = stringLess,
isLessEqual_method = stringLessEq,
isGreater_method = stringGreater,
isGreaterEqual_method = stringGreaterEq |) )"
end