File tree 5 files changed +31
-2
lines changed
5 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 8
8
| | [ ![ Nuget Status] ( https://img.shields.io/nuget/v/quikgraph.graphviz.svg )] ( https://www.nuget.org/packages/QuikGraph.Graphviz ) QuikGraph.Graphviz |
9
9
| | [ ![ Nuget Status] ( https://img.shields.io/nuget/v/quikgraph.data.svg )] ( https://www.nuget.org/packages/QuikGraph.Data ) QuikGraph.Data |
10
10
| | [ ![ Nuget Status] ( https://img.shields.io/nuget/v/quikgraph.msagl.svg )] ( https://www.nuget.org/packages/QuikGraph.MSAGL ) QuikGraph.MSAGL |
11
+ | | [ ![ Nuget Status] ( https://img.shields.io/nuget/v/quikgraph.petri.svg )] ( https://www.nuget.org/packages/QuikGraph.Petri ) QuikGraph.Petri |
11
12
| ** License** | MS-PL |
12
13
13
14
# QuikGraph
@@ -69,6 +70,7 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
69
70
- [ QuikGraph.Graphviz] ( https://www.nuget.org/packages/QuikGraph.Graphviz )
70
71
- [ QuikGraph.Data] ( https://www.nuget.org/packages/QuikGraph.Data )
71
72
- [ QuikGraph.MSAGL] ( https://www.nuget.org/packages/QuikGraph.MSAGL )
73
+ - [ QuikGraph.Petri] ( https://www.nuget.org/packages/QuikGraph.Petri )
72
74
73
75
### Where to go next?
74
76
Original file line number Diff line number Diff line change 9
9
10
10
---
11
11
12
- ## What's new in 2.2.0 June 7 2020, June 11 2020 and June 18 2020
12
+ ## What's new in 2.2.0 June 7 2020, June 11 2020, June 18 2020 and June 25 2020
13
13
14
14
### QuikGraph
15
15
@@ -49,6 +49,22 @@ Migrate the library from GLEE to [MSAGL](https://www.microsoft.com/en-us/researc
49
49
* Fully document library.
50
50
* Use JetBrains annotations all over the library as much as possible.
51
51
52
+ ### QuikGraph.Petri
53
+
54
+ #### Fixes:
55
+ * Fix PetriNetSimulator with possible collection modified while enumerating.
56
+
57
+ #### Updates:
58
+ * Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.
59
+
60
+ ### API Breaks
61
+ * Some public API breaks (but should remain simple to do a migration).
62
+
63
+ #### Misc:
64
+ * Clean the library code.
65
+ * Fully document library.
66
+ * Use JetBrains annotations all over the library as much as possible.
67
+
52
68
---
53
69
54
70
## What's new in 2.1.1 June 6 2020
Original file line number Diff line number Diff line change 8
8
" src/QuikGraph.Serialization/**.csproj" ,
9
9
" src/QuikGraph.Graphviz/**.csproj" ,
10
10
" src/QuikGraph.Data/**.csproj" ,
11
- " src/QuikGraph.MSAGL/**.csproj"
11
+ " src/QuikGraph.MSAGL/**.csproj" ,
12
+ " src/QuikGraph.Petri/**.csproj"
12
13
],
13
14
"exclude" : [
14
15
" **/obj/**" ,
Original file line number Diff line number Diff line change @@ -57,4 +57,8 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
57
57
58
58
PM> Install-Package QuikGraph.MSAGL
59
59
60
+ [ ![ Nuget Status] ( https://img.shields.io/nuget/v/quikgraph.petri.svg )] ( https://www.nuget.org/packages/QuikGraph.Petri ) [ QuikGraph.Petri] ( https://www.nuget.org/packages/QuikGraph.Petri )
61
+
62
+ PM> Install-Package QuikGraph.Petri
63
+
60
64
<img src =" images/quikgraph_logo.png " width =" 128 " height =" 128 " style =" display : block ; margin-left : auto ; margin-right : auto " />
Original file line number Diff line number Diff line change @@ -31,6 +31,12 @@ Supports Source Link</Description>
31
31
<PackageReleaseNotes >➟ Release 2.2.0
32
32
Rework the original QuickGraph.Petri module into QuikGraph.Petri. This make possible to use the Petri Net features.
33
33
34
+ Fixes:
35
+ - Fix PetriNetSimulator with possible collection modified while enumerating.
36
+
37
+ Updates:
38
+ - Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.
39
+
34
40
Misc:
35
41
- Clean the library code.
36
42
- Fully document library.
You can’t perform that action at this time.
0 commit comments