Skip to content

Commit 301439f

Browse files
authored
Merge pull request #115 from adolgert/dev/sample-context
Dev/sample context
2 parents f5047ff + 0068f79 commit 301439f

File tree

124 files changed

+16752
-1685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+16752
-1685
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
matrix:
1212
version:
1313
- 'lts'
14-
- '1.11'
14+
- '1.12'
1515
os:
1616
- ubuntu-latest
1717
include:
18-
- version: "1.11"
18+
- version: "1.12"
1919
os: macOS-latest
2020
arch: arm64
21-
- version: "1.11"
21+
- version: "1.12"
2222
os: windows-latest
2323
arch: x64
2424
arch:

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ docs/src/sir.md
4242
# environment.
4343
Manifest.toml
4444

45+
*.png
46+
*.ttf
47+
docs/notes/createkwlists.jl
48+
docs/notes/createucclist.jl
49+
*.sty
50+
*.pdf
51+
./results/
52+
4553
# General
4654
.DS_Store
4755
.AppleDouble

Project.toml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
name = "CompetingClocks"
22
uuid = "5bb9b785-358c-4fee-af0f-b94a146244a8"
3-
authors = ["Andrew Dolgert <[email protected]>", "Sean L. Wu <[email protected]>"]
43
version = "0.1.0"
4+
authors = ["Andrew Dolgert <[email protected]>", "Sean L. Wu <[email protected]>"]
5+
6+
[workspace]
7+
projects = ["test", "docs", "benchmarks", "examples"]
58

69
[deps]
710
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
811
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
912
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
1013
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
14+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
1115
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
1216
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
17+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1318

1419
[compat]
1520
Combinatorics = "^1.0"
16-
DataStructures = "^0.18"
21+
DataStructures = "^0.19"
1722
Distributions = "^0.25"
18-
Documenter = "^1.3"
19-
julia = "^1.8"
23+
Documenter = "^1.15"
24+
InteractiveUtils = "^1.10"
2025
Logging = "^1.0"
2126
Random = "^1.0"
27+
SpecialFunctions = "^2.6"
28+
julia = "^1.10"

benchmarks/Project.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[deps]
2+
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
3+
CompetingClocks = "5bb9b785-358c-4fee-af0f-b94a146244a8"
4+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
5+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
6+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
7+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
8+
9+
[sources]
10+
CompetingClocks = {path = ".."}

0 commit comments

Comments
 (0)