Skip to content

Commit 07b2423

Browse files
committed
Rocq/Stdlib rename
1 parent b9fd304 commit 07b2423

23 files changed

Lines changed: 30 additions & 30 deletions

File tree

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We develop a cousin of Interaction Trees, dubbed _ctrees_ with native support fo
1313
- Yannick Zakowski
1414
- Steve Zdancewic
1515
- License: MIT License
16-
- Compatible Coq versions: 8.19
16+
- Compatible Rocq versions: 9.0
1717
- Additional dependencies:
1818
- dune
1919
- [Extlib](https://github.com/coq-community/coq-ext-lib)
@@ -22,7 +22,7 @@ We develop a cousin of Interaction Trees, dubbed _ctrees_ with native support fo
2222
- [Coinduction](https://github.com/damien-pous/coinduction)
2323
- [RelationAlgebra](https://github.com/damien-pous/relation-algebra)
2424
- [Alectryon](https://github.com/cpitclaudel/alectryon)
25-
- Coq namespace: `CTree`
25+
- Rocq namespace: `CTree`
2626

2727
## Building instructions
2828

examples/CCS/Denotation.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Denotation of [ccs] into [ctree]s
77
|*)
88
Unset Universe Checking.
99

10-
From Coq Require Export
10+
From Stdlib Require Export
1111
List
1212
Strings.String.
13-
From Coq Require Import RelationClasses Program.
13+
From Stdlib Require Import RelationClasses Program.
1414

1515
From RelationAlgebra Require Import
1616
monoid
@@ -117,7 +117,7 @@ Section Combinators.
117117

118118
(*|
119119
We would like to define [bang] directly as in the following.
120-
Unfortunately, it is not syntactically guarded and convincing Coq
120+
Unfortunately, it is not syntactically guarded and convincing Rocq
121121
seems challenging.
122122
We therefore instead define a more general function [parabang] expressing
123123
at once the parallel composition of a process [p] with a server of [q].

examples/CCS/Syntax.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ No recursion nor replication at the moment, todo.
88
.. coq:: none
99
|*)
1010

11-
From Coq Require Export
11+
From Stdlib Require Export
1212
List
1313
Strings.String.
1414

examples/ImpBr/ImpBr.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Unset Universe Checking.
22

3-
From Coq Require Import
3+
From Stdlib Require Import
44
Arith.PeanoNat
55
Lists.List
66
Strings.String

examples/Yield/Lang.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
Arith.PeanoNat
33
Lists.List
44
Strings.String

examples/Yield/Par.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
Program
33
List
44
Logic.FunctionalExtensionality

examples/Yield/Util.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
Program
33
List
44
Logic.FunctionalExtensionality

tests/ImpBrTest/ImpBrEx/ImpBrEx.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Unset Universe Checking.
22

3-
From Coq Require Import
3+
From Stdlib Require Import
44
Strings.String.
55
From ExtLib Require Import
66
Data.Map.FMapAList.

theories/Core/Utils.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[global] Set Warnings "-intuition-auto-with-star".
22

3-
From Coq Require Import Fin.
4-
From Coq Require Export Program.Equality.
3+
From Stdlib Require Import Fin.
4+
From Stdlib Require Export Program.Equality.
55
From Coinduction Require Import all.
66
From ITree Require Import Basics.Basics.
77

theories/Eq.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file reexports everything that's necessary to reason w.r.t.
66
Tactics are redefined locally to support both relations.
77
|*)
88

9-
From Coq Require Export Basics.
9+
From Stdlib Require Export Basics.
1010

1111
From RelationAlgebra Require Export
1212
rel srel.

0 commit comments

Comments
 (0)