View cabal.project.local
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
constraints: | |
containers == 0.7.* | |
allow-newer: | |
aeson:containers, | |
Cabal-syntax:containers, | |
cabal-install-parsers:containers, | |
cassava:containers, | |
foldable1-classes-compat:containers, | |
hashable:containers, |
View crux-mir-test.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
crux-mir | |
crux concrete | |
refs | |
promoted_imm: OK (0.15s) | |
Compiling and running oracle program (0.15s) | |
Oracle output: 0 | |
Crux output: 0 | |
mut_raw: OK (0.15s) | |
Compiling and running oracle program (0.15s) |
View Blah.sawcore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Blah where |
View cabal.project.local
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
allow-newer: | |
aeson:deepseq, | |
aeson:ghc-prim, | |
aeson:template-haskell, | |
aeson:th-abstraction, | |
assoc:base, | |
async:base, | |
attoparsec:ghc-prim, | |
binary-orphans:base, | |
boring:base, |
View SimplifiedExample.v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From Coq Require Import Program.Basics. | |
From Coq Require Program.Equality. | |
From Coq Require Import Vectors.Vector. | |
From Coq Require Import Logic.Eqdep. | |
Import VectorNotations. | |
Require Import Lia. | |
Require Import ZArith. | |
Require Import ZifyBool. |
View ZifyTermTakeOne.v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From Coq Require Import Program.Basics. | |
From Coq Require Program.Equality. | |
From Coq Require Import Vectors.Vector. | |
From Coq Require Import Logic.Eqdep. | |
Import VectorNotations. | |
Require Import Lia. | |
Require Import ZArith. | |
Require Import ZifyBool. |
View HDList.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE StandaloneKindSignatures #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE UndecidableInstances #-} | |
module HDList where | |
import qualified Control.Category as Cat (Category(..)) | |
import Data.Function (on) |
View DList.v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Lists.List. | |
Import ListNotations. | |
Open Scope list_scope. | |
Require Import Logic.FunctionalExtensionality. | |
Require Import Lists.Streams. | |
Inductive DList (a : Type) : Type := | |
| MkDList : (list a -> list a) -> DList a. | |
Arguments MkDList {a} f. |
View FromToVec.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE StandaloneKindSignatures #-} | |
{-# LANGUAGE TypeApplications #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE TypeOperators #-} | |
module FromToVec where |
View Main.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE NoStarIsType #-} | |
{-# LANGUAGE RankNTypes #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE TypeApplications #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# OPTIONS_GHC -Wall #-} | |
module Main (main) where |
NewerOlder