set_verbose_symbols : unit -> unit

SYNOPSIS
Enables more verbose descriptive names for quantifiers and logical constants

DESCRIPTION
A call to set_verbose_symbols() enables a more verbose syntax for the logical quantifiers and constants. These are all just interface mappings, the underlying constant names in the abstract syntax of the logic being unchanged. But the more descriptive names are applied by default when printing and are accepted when parsing terms as synonyms of the symbolic names. The new names are: The effect can be reverse by a call to the dual function unset_verbose_symbols().

EXAMPLE
Notice how the printing of theorems changes from using the symbolic names for quantifiers
  # unset_verbose_symbols();;
  val it : unit = ()
  # num_Axiom;;
  val it : thm = |- !e f. ?!fn. fn 0 = e /\ (!n. fn (SUC n) = f (fn n) n)
to the more verbose and descriptive names:
  # set_verbose_symbols();;
  val it : unit = ()
  # num_Axiom;;
  val it : thm =
    |- forall e f.
           existsunique fn. fn 0 = e /\ (forall n. fn (SUC n) = f (fn n) n)

FAILURE CONDITIONS
Only fails if some of the names have already been used for incompatible constants.

SEE ALSO
overload_interface, override_interface, remove_interface, the_interface, unset_verbose_symbols.