You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTORS.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,16 @@ SwiftGraph is being used in several real-world and hobby projects. The most nota
13
13
## Contributors
14
14
15
15
SwiftGraph has been worked on by the following people:
16
-
- David Kopec (@davecom) - I started the project in 2014 and I have been maintaining it ever since; I wrote most of the code between 2014-2017
17
-
- Ferran Pujol Camins (@ferranpujolcamins) - Ferran got us setup with continuous integration, added the `UniqueVerticesGraph` class and its supporting machinery, refactored some of the search algorithms, cleaned up several miscellaneous sections, and is working on Graphviz support. He was the primary force behind SwiftGraph in 2018-2019.
16
+
- David Kopec (@davecom) - I started the project in 2014 and I have been maintaining it ever since; I wrote most of the initial code between 2014-2017
17
+
- Ferran Pujol Camins (@ferranpujolcamins) - Ferran got us setup with continuous integration, added the `UniqueVerticesGraph` class and its supporting machinery, refactored some of the search algorithms, and cleaned up several miscellaneous sections. He was the primary force behind SwiftGraph in 2018-2019.
18
18
- Zev Eisenberg (@ZevEisenberg) - Added the original cycle detection algorithms and provided miscellaneous bug fixes.
19
19
- Kevin Lundberg (@klundberg) - Added Carthage support.
20
20
- Ian Grossberg (@yoiang) - Helped with Codable support
21
21
- Devin Abbott (@dabbott) - Improved the performance of `topologicalSort()`
22
22
- Matt Paletta (@mattpaletta) - Added `reversed()`
23
+
- Tiziano Coroneo (@TizianoCoroneo) - Added indegree and outdegree methods
24
+
- Maciej Bliziński (@automaciej) - Improved detectCycles() performance
25
+
- Vithanco (@vithanco) - Improved addEdge()
26
+
- Stephen Beitzel (@sbeitzel) - Added counting paths between vertices
23
27
24
-
Thank you to everyone who has contributed, including those not listed, who made smaller contributions. If I forgot you and you made a significant contribution to SwiftGraph, please make a pull request to this document.
25
-
26
-
### Designated Successor
27
-
28
-
Should I become incapacitated, or for some reason I stop responding for more than six months, it's my wish that Ferran takeover the project. If SwiftGraph becomes more popular and we need a more sophisticated governance structure, I'm happy to put that in place.
28
+
Thank you to everyone who has contributed, including those not listed, who made smaller contributions. If I forgot you and you made a significant contribution to SwiftGraph, please make a pull request to this document.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ It includes copious in-source documentation, unit tests, as well as search funct
16
16
17
17
SwiftGraph 3.0 and above requires Swift 5 (Xcode 10.2). Use SwiftGraph 2.0 for Swift 4.2 (Xcode 10.1) support, SwiftGraph 1.5.1 for Swift 4.1 (Xcode 9), SwiftGraph 1.4.1 for Swift 3 (Xcode 8), SwiftGraph 1.0.6 for Swift 2 (Xcode 7), and SwiftGraph 1.0.0 for Swift 1.2 (Xcode 6.3) support. SwiftGraph supports GNU/Linux and is tested on it.
18
18
19
+
### Swift Package Manager (SPM)
20
+
21
+
Use this repository as your dependency.
22
+
19
23
### CocoaPods
20
24
21
25
Use the CocoaPod `SwiftGraph`.
@@ -25,13 +29,9 @@ Use the CocoaPod `SwiftGraph`.
25
29
Add the following to your `Cartfile`:
26
30
27
31
```
28
-
github "davecom/SwiftGraph" ~> 3.1
32
+
github "davecom/SwiftGraph" ~> 4.0
29
33
```
30
34
31
-
### Swift Package Manager (SPM)
32
-
33
-
Use this repository as your dependency.
34
-
35
35
### Manual
36
36
37
37
Copy all of the sources in the `Sources` folder into your project.
0 commit comments