Built with Alectryon, running Coq+SerAPI v8.10.0+0.7.0. Coq sources are in this panel; goals and messages will appear in the other. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus.
(************************************************************************)
(*         *   The Coq Proof Assistant / The Coq Development Team       *)
(*  v      *   INRIA, CNRS and contributors - Copyright 1999-2018       *)
(* <O___,, *       (see CREDITS file for the list of authors)           *)
(*   \VV/  **************************************************************)
(*    //   *    This file is distributed under the terms of the         *)
(*         *     GNU Lesser General Public License Version 2.1          *)
(*         *     (see LICENSE file for the text of the license)         *)
(************************************************************************)
Utilities for SProp users.
Set Universe Polymorphism.
Set Polymorphic Inductive Cumulativity.

SProp not allowed, you need to Set Allow StrictProp or to use the -allow-sprop command-line-flag.
Arguments box {_} _. Arguments unbox {_} _. Inductive Squash (A:Type) : SProp := squash : A -> Squash A. Arguments squash {_} _. Inductive sEmpty : SProp :=. Inductive sUnit : SProp := stt. Definition sUnit_rect (P:sUnit -> Type) (v:P stt) (u:sUnit) : P u := v. Definition sUnit_rec (P:sUnit -> Set) (v:P stt) (u:sUnit) : P u := v. Definition sUnit_ind (P:sUnit -> Prop) (v:P stt) (u:sUnit) : P u := v. Set Primitive Projections. Record Ssig {A:Type} (P:A->SProp) := Sexists { Spr1 : A; Spr2 : P Spr1 }. Arguments Sexists {_} _ _ _. Arguments Spr1 {_ _} _. Arguments Spr2 {_ _} _.
The reference Ssig was not found in the current environment.
Proof. destruct a,b;simpl in e. destruct e. reflexivity. Defined.