aboutsummaryrefslogtreecommitdiffhomepage
path: root/phox/phox-pbrpm.el
blob: de9ee603f0042fe99cc6e07f2c78a6ca6353b9f9 (plain)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
;; $State$ $Date$ $Revision$ 
;;--------------------------------------------------------------------------;;
;;--------------------------------------------------------------------------;;
;; the proof by rules popup menu part
;;
;; Note : program extraction is still experimental This file is very
;; dependant of the actual state of our developments
;;--------------------------------------------------------------------------;;

;;--------------------------------------------------------------------------;;
;; Syntactic functions
;;--------------------------------------------------------------------------;;
(defun phox-pbrpm-regexps ()
  (setq
    goal-backward-regexp "^goal [0-9]+/[0-9]+$"
    goal-number-regexp "[0-9]+"
    hyp-backward-regexp "[^A-Za-z0-9_.']\\([A-Za-z0-9_.']+\\) :="
    ccl-backward-regexp "|-")
)

; TODO : deal with future invisible parentheses (french guillemots)
(defun phox-pbrpm-left-paren-p (char)
"Retrun t if the character is a left parenthesis : '(' or a french guillemot '<<'"
   (or
   (char-equal char (int-char 40))
   (char-equal char (int-char 171)))
)

(defun phox-pbrpm-right-paren-p (char)
"Retrun t if the character is a right parenthesis ')' or a french guillemot '>>'"
   (or
   (char-equal char (int-char 41))
   (char-equal char (int-char 187)))
)

;;--------------------------------------------------------------------------;;
;; Testing Menu
;;--------------------------------------------------------------------------;;

(defun phox-pbrpm-generate-menu (click-infos region-infos)
; This FAKE function will be replace by a real 'generate-menu' once the code will be judged stable

"Use informations to build a list of (name , rule)"
   ;click-infos = (goal-number, "whole"/hyp-name/"none", expression, depth-tree-list)
   ;region-infos = idem if in the goal buffer, (0, "none", expression, nil ) if in another buffer, do not display if no region available.

   (setq pbrpm-rules-list (list))

   ; the first goal is the selected one by default, so we prefer not to display it.

   ; if clicking in a conclusion => select.intro
   (if (and (string= (nth 1 click-infos) "none") (not region-infos))
      (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list
	     (list "Décompose"
               (if (= (nth 0 click-infos) 1)
                  (identity "intro. ")
                  (concat "select " (int-to-string (nth 0 click-infos)) ". intro. ")))
	     (list "Décompose plusieurs"
               (if (= (nth 0 click-infos) 1)
                  (identity "intros. ")
                  (concat "select " (int-to-string (nth 0 click-infos)) ". intros. ")))
		  );end list's
            ); end append
      );end setq
   );end if

   ; if clicking in an hypothesis => select.elim
   (if (and
         (not (or (string= (nth 1 click-infos) "none")
            (string= (nth 1 click-infos) "whole")))
         (not region-infos))
      (progn 
       (setq pbrpm-rules-list
	     (append pbrpm-rules-list
		     (list (list "Produit la conclusion"
               (if (= (nth 0 click-infos) 1)
                  (concat "elim "
                     (nth 1 click-infos)
                     ". ")
                  (concat "select "
                     (int-to-string (nth 0 click-infos))
                     ". elim "
                     (nth 1 click-infos)
                     ". "))))))
      (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list (list "QED"
               (if (= (nth 0 click-infos) 1)
                  (concat "axiom "
                     (nth 1 click-infos)
                     ". ")
                  (concat "select "
                     (int-to-string (nth 0 click-infos))
                     ". axiom "
                     (nth 1 click-infos)
                     ". "))))))))

   ; if clicking in an hypothesis => select.left
   (if (and
         (not (or (string= (nth 1 click-infos) "none")
            (string= (nth 1 click-infos) "whole")))
         (not region-infos))
      (setq pbrpm-rules-list
      (append pbrpm-rules-list
         (list (list "Décompose"
            (if (= (nth 0 click-infos) 1)
		(concat "left "
			(nth 1 click-infos)
                     ". ")
               (concat "select "
		       (int-to-string (nth 0 click-infos))
		       ". left"
		  (nth 1 click-infos)
                     ". ")
 		  ))
	       (list "Décompose plusieurs"
            (if (= (nth 0 click-infos) 1)
		(concat "lefts "
			(nth 1 click-infos)
                     ". ")
               (concat "select "
		       (int-to-string (nth 0 click-infos))
		       ". lefts"
		  (nth 1 click-infos)
                     ". ")
 		  ))))))


   ; if region is an hypothesis (ie in the goals buffer) and clicking in that hyp's goal =>
   (if region-infos
   (if (and
         (not (or (string= (nth 1 region-infos) "none")
            (string= (nth 1 region-infos) "whole")))
         (equal (nth 0 click-infos) (nth 0 region-infos))
      )
      (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list (list "Réécrit la conclusion"
               (if (= (nth 0 click-infos) 1)
                  (concat "rewrite "
                     (nth 1 region-infos)
                     ". ")
                  (concat "select "
                     (int-to-string (nth 0 click-infos))
                     ". rewrite "
                     (nth 1 region-infos)
                     ". ")))))))
   )

   (if (and         
	(not (or (string= (nth 1 click-infos) "none")
		 (string= (nth 1 click-infos) "whole")))
	(not (string= (nth 2 region-infos) ""))
	)
       (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list (list "Applique l'hypothèse à une expression"
               (if (= (nth 0 click-infos) 1)
               (concat "apply "
                  (nth 1 click-infos)
                  " with "
                  (nth 2 region-infos)
                  ". ")
               (concat "select "
                  (int-to-string (nth 0 click-infos))
                  ". select "
                  (nth 1 click-infos)
                  " with "
                  (nth 2 region-infos)
                  ". ")))))))

   ; if region is an hypothesis (ie in the goals buffer) and clicking in an (other) hyp', both in the same goal => 
   (if region-infos
   (if (and
         (not (or (string= (nth 1 click-infos) "none")
            (string= (nth 1 click-infos) "whole")))
         (not (or (string= (nth 1 region-infos) "none")
            (string= (nth 1 region-infos) "whole")))
         (equal (nth 0 click-infos) (nth 0 region-infos))
         (not (string= (nth 1 click-infos) (nth 1 region-infos)))
      )
      (progn 
         (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list (list "Réécrit l'hypothèse"
               (if (= (nth 0 click-infos) 1)
               (concat "rewrite_hyp "
                  (nth 1 click-infos)
                  " "
                  (nth 1 region-infos)
                  ". ")
               (concat "select "
                  (int-to-string (nth 0 click-infos))
                  ". rewrite_hyp "
                  (nth 1 click-infos)
                  " "
                  (nth 1 region-infos)
                  ". "))))))
       (setq pbrpm-rules-list
         (append pbrpm-rules-list
            (list (list "Applique l'hypothèse à une autre hypothèse"
               (if (= (nth 0 click-infos) 1)
               (concat "apply "
                  (nth 1 click-infos)
                  " with "
                  (nth 1 region-infos)
                  ". ")
               (concat "select "
                  (int-to-string (nth 0 click-infos))
                  ". select "
                  (nth 1 click-infos)
                  " with "
                  (nth 1 region-infos)
                  ". "))))))))

  )

   (identity pbrpm-rules-list)
)


;;--------------------------------------------------------------------------;;
;; Selections Buffer management -- unused for now
;;--------------------------------------------------------------------------;;
;initialize the selections buffer for the PBRPM mode
;1 buffer for every selections
(display-buffer (generate-new-buffer (generate-new-buffer-name "phox-selections")))

;copy the current region in the selections buffer
(defun pg-pbrpm-add-selection ()
"Append the selection of the current buffer to
the phox-selections buffer used with PBRPM."
  (interactive)
  ;TODO : check wether the selected region is a well formed expression
  ;copy at the end of the selections buffer before switching to it
  ; else we'll loose mark & point
  (switch-to-buffer (get-buffer "phox-selections"))
  (goto-char (point-max))
  (insert-string (get-selection))
  ; if the selected region already ends with a \n, don't insert a second one
  (if (not (bolp))
      (insert-string "\n"))
  (insert-string "\n")
  ;buffer is ready to receive a new selection
)


;clean the phox-selections buffer
(defun pg-pbrpm-clean-selections-buffer ()
"Clean the phox-selections buffer used with PBRPM."
  (interactive)
  (erase-buffer (get-buffer "phox-selections"))
)

;selections management menu
(defvar phox-pbrpm-menu
"Phox menu for dealing with Selections."
   '("Selections"
   ["Add Selection" pg-pbrpm-add-selection ]
   ["Clean Selections buffer" pg-pbrpm-clean-selections-buffer ]
   )
) ;see phox.el > menu-entries


;;--------------------------------------------------------------------------;;
;; phox specific functions
;;--------------------------------------------------------------------------;;

(defalias 'proof-pbrpm-generate-menu 'phox-pbrpm-generate-menu)
(defalias 'proof-pbrpm-left-paren-p 'phox-pbrpm-left-paren-p)
(defalias 'proof-pbrpm-right-paren-p 'phox-pbrpm-right-paren-p)
(defalias 'proof-pbrpm-regexps 'phox-pbrpm-regexps)

;;--------------------------------------------------------------------------;;
(require 'pg-pbrpm)
(provide 'phox-pbrpm)
;; phox-pbrpm ends here