8000 added msa to swiftgraph for pull request by NickTheFreak97 · Pull Request #87 · davecom/SwiftGraph · GitHub
[go: up one dir, main page]

Skip to content

added msa to swiftgraph for pull request #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
10000
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Moved files references to Sources
  • Loading branch information
NickTheFreak97 committed Jun 26, 2024
commit a00fc9e042d0afff473ef73ea0dc8cd80eca1b28
26 changes: 26 additions & 0 deletions Sources/SwiftGraph/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Oak Snow Consulting. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
File renamed without changes.
19 changes: 19 additions & 0 deletions Sources/SwiftGraph/SwiftGraphFramework.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// SwiftGraphFramework.h
// SwiftGraphFramework
//
// Created by Kevin Lundberg on 2/19/17.
// Copyright © 2017 Oak Snow Consulting. All rights reserved.
//

#import <Foundation/Foundation.h>

//! Project version number for SwiftGraphFramework.
FOUNDATION_EXPORT double SwiftGraphFrameworkVersionNumber;

//! Project version string for SwiftGraphFramework.
FOUNDATION_EXPORT const unsigned char SwiftGraphFrameworkVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <SwiftGraphFramework/PublicHeader.h>


9 changes: 5 additions & 4 deletions SwiftGraph.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
84BE1E9E2C1DD6590024C229 /* CompressedTree.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompressedTree.swift; sourceTree = "<group>"; };
84BE1E9F2C1DD6590024C229 /* LinkedList.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LinkedList.swift; sourceTree = "<group>"; };
84BE1EA12C1DD6590024C229 /* Gabow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Gabow.swift; sourceTree = "<group>"; };
84BE1EA22C1DD6590024C229 /* MSA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MSA.swift; sourceTree = "<group>"; };
84BE1EA22C1DD6590024C229 /* MSA.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MSA.swift; path = ../Sources/SwiftGraph/MSA.swift; sourceTree = "<group>"; };
84BE1EAD2C1DD80E0024C229 /* MSATests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MSATests.swift; sourceTree = "<group>"; };
B5100A4B208B97A800C7A73A /* UnweightedGraphTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnweightedGraphTests.swift; sourceTree = "<group>"; };
B518BAB62232E8A40059DCB8 /* WeightedUniqueElementsGraphTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeightedUniqueElementsGraphTests.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -279,13 +279,13 @@
7985B8FC1E5A4FB800C100E7 /* SwiftGraph */ = {
isa = PBXGroup;
children = (
7985B8FE1E5A4FB800C100E7 /* Info.plist */,
7985B8FD1E5A4FB800C100E7 /* SwiftGraphFramework.h */,
5589B4811C0E774300D6664E /* Edges */,
5589B4821C0E774F00D6664E /* Graphs */,
B58B0D732083DEC400A0E1AB /* Operations */,
5589B4831C0E775800D6664E /* Search */,
B54FDA6D21729EFF00057C51 /* Constructors.swift */,
7985B8FD1E5A4FB800C100E7 /* SwiftGraphFramework.h */,
7985B8FE1E5A4FB800C100E7 /* Info.plist */,
);
path = SwiftGraph;
sourceTree = "<group>";
Expand Down Expand Up @@ -329,7 +329,8 @@
84BE1E9B2C1DD6590024C229 /* Data Structures */,
84BE1EA02C1DD6590024C229 /* Gabow */,
);
path = Arbok;
name = Arbok;
path = ../Sources/SwiftGraph/Arbok;
sourceTree = "<group>";
};
84BE1E9B2C1DD6590024C229 /* Data Structures */ = {
Expand Down
0