File: logic_basic.sig

package info (click to toggle)
elpi 2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 50,296 kB
  • sloc: ml: 18,791; makefile: 229; python: 95; sh: 7
file content (18 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This file defines encodings for the logical symbols in a 
 * first-order logic. 
 */

sig  logic_basic.

accum_sig  logic_types.

/* Constants encoding the logical symbols; note the types of the 
generalized quantifiers */
type   perp    form.
type   tru     form.
type   (`and)     form -> form -> form.
type   (`or)      form -> form -> form.
type   (`imp)     form -> form -> form.
type   all     (term -> form) -> form.
type   some    (term -> form) -> form.