~ubuntu-branches/ubuntu/maverick/agda-stdlib/maverick

« back to all changes in this revision

Viewing changes to src/Relation/Binary/StrictPartialOrderReasoning.agda

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2010-01-08 23:35:09 UTC
  • Revision ID: james.westby@ubuntu.com-20100108233509-l6ejt9xji64xysfb
Import upstream version 0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
------------------------------------------------------------------------
 
2
-- Convenient syntax for "equational reasoning" using a strict partial
 
3
-- order
 
4
------------------------------------------------------------------------
 
5
 
 
6
{-# OPTIONS --universe-polymorphism #-}
 
7
 
 
8
open import Relation.Binary
 
9
 
 
10
module Relation.Binary.StrictPartialOrderReasoning
 
11
         {p₁ p₂ p₃} (S : StrictPartialOrder p₁ p₂ p₃) where
 
12
 
 
13
import Relation.Binary.PreorderReasoning as PreR
 
14
import Relation.Binary.Props.StrictPartialOrder as SPO
 
15
open PreR (SPO.preorder S) public renaming (_∼⟨_⟩_ to _<⟨_⟩_)