module Common.BlameLabels where

open import Data.Nat
open import Relation.Nullary using (¬_; Dec; yes; no)
open import Relation.Binary.PropositionalEquality using (_≡_; _≢_; refl; cong)

data BlameLabel : Set where
  pos :   BlameLabel
  neg :   BlameLabel

flip : BlameLabel  BlameLabel
flip (pos ) = (neg )
flip (neg ) = (pos )