Skip to content

Commit b7539d0

Browse files
committed
Fixed Pods.
1 parent aa36b92 commit b7539d0

File tree

6 files changed

+19
-342
lines changed

6 files changed

+19
-342
lines changed

KRHebbian.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "KRHebbian"
3-
s.version = "1.0.1"
3+
s.version = "1.0.2"
44
s.summary = "Self learning the adjust weight method on Machine Learning."
55
s.description = <<-DESC
66
KRHebbian is a self-learning algorithm (adjust the weights) in neural network of Machine Learning (自分学習アルゴリズム).
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
1313
s.platform = :ios, '6.0'
1414
s.requires_arc = true
1515
s.public_header_files = 'KRHebbian/*.h'
16-
s.source_files = 'KRHebbian/KRHebbian.h'
16+
s.source_files = 'KRHebbian/*.{h,m}'
1717
s.frameworks = 'Foundation'
1818
end

KRHebbianAlgorithm.xcodeproj/project.pbxproj

Lines changed: 14 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
8E7D0B831B936AE8003C6C50 /* KRHebbian.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7D0B821B936AE8003C6C50 /* KRHebbian.m */; };
1011
8EFFAE7D1769BF2F008C8ECC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFFAE7C1769BF2F008C8ECC /* UIKit.framework */; };
1112
8EFFAE7F1769BF2F008C8ECC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFFAE7E1769BF2F008C8ECC /* Foundation.framework */; };
1213
8EFFAE811769BF2F008C8ECC /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFFAE801769BF2F008C8ECC /* CoreGraphics.framework */; };
@@ -18,10 +19,11 @@
1819
8EFFAE931769BF2F008C8ECC /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 8EFFAE921769BF2F008C8ECC /* [email protected] */; };
1920
8EFFAE961769BF2F008C8ECC /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EFFAE951769BF2F008C8ECC /* ViewController.m */; };
2021
8EFFAE991769BF2F008C8ECC /* ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8EFFAE971769BF2F008C8ECC /* ViewController.xib */; };
21-
8EFFAEA31769BF4E008C8ECC /* KRHebbian.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EFFAEA21769BF4E008C8ECC /* KRHebbian.m */; };
2222
/* End PBXBuildFile section */
2323

2424
/* Begin PBXFileReference section */
25+
8E7D0B811B936AE8003C6C50 /* KRHebbian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KRHebbian.h; sourceTree = "<group>"; };
26+
8E7D0B821B936AE8003C6C50 /* KRHebbian.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KRHebbian.m; sourceTree = "<group>"; };
2527
8EFFAE791769BF2F008C8ECC /* KRHebbianAlgorithm.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KRHebbianAlgorithm.app; sourceTree = BUILT_PRODUCTS_DIR; };
2628
8EFFAE7C1769BF2F008C8ECC /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2729
8EFFAE7E1769BF2F008C8ECC /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -38,8 +40,6 @@
3840
8EFFAE941769BF2F008C8ECC /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
3941
8EFFAE951769BF2F008C8ECC /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
4042
8EFFAE981769BF2F008C8ECC /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController.xib; sourceTree = "<group>"; };
41-
8EFFAEA11769BF4E008C8ECC /* KRHebbian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KRHebbian.h; sourceTree = "<group>"; };
42-
8EFFAEA21769BF4E008C8ECC /* KRHebbian.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KRHebbian.m; sourceTree = "<group>"; };
4343
/* End PBXFileReference section */
4444

4545
/* Begin PBXFrameworksBuildPhase section */
@@ -56,10 +56,19 @@
5656
/* End PBXFrameworksBuildPhase section */
5757

5858
/* Begin PBXGroup section */
59+
8E7D0B801B936AE8003C6C50 /* KRHebbian */ = {
60+
isa = PBXGroup;
61+
children = (
62+
8E7D0B811B936AE8003C6C50 /* KRHebbian.h */,
63+
8E7D0B821B936AE8003C6C50 /* KRHebbian.m */,
64+
);
65+
path = KRHebbian;
66+
sourceTree = "<group>";
67+
};
5968
8EFFAE701769BF2F008C8ECC = {
6069
isa = PBXGroup;
6170
children = (
62-
8EFFAE9F1769BF4E008C8ECC /* Classes */,
71+
8E7D0B801B936AE8003C6C50 /* KRHebbian */,
6372
8EFFAE821769BF2F008C8ECC /* KRHebbianAlgorithm */,
6473
8EFFAE831769BF2F008C8ECC /* Supporting Files */,
6574
8EFFAE7B1769BF2F008C8ECC /* Frameworks */,
@@ -112,24 +121,6 @@
112121
path = KRHebbianAlgorithm;
113122
sourceTree = "<group>";
114123
};
115-
8EFFAE9F1769BF4E008C8ECC /* Classes */ = {
116-
isa = PBXGroup;
117-
children = (
118-
8EFFAEA01769BF4E008C8ECC /* Algorithms */,
119-
);
120-
name = Classes;
121-
path = KRHebbianAlgorithm/Classes;
122-
sourceTree = "<group>";
123-
};
124-
8EFFAEA01769BF4E008C8ECC /* Algorithms */ = {
125-
isa = PBXGroup;
126-
children = (
127-
8EFFAEA11769BF4E008C8ECC /* KRHebbian.h */,
128-
8EFFAEA21769BF4E008C8ECC /* KRHebbian.m */,
129-
);
130-
path = Algorithms;
131-
sourceTree = "<group>";
132-
};
133124
/* End PBXGroup section */
134125

135126
/* Begin PBXNativeTarget section */
@@ -196,10 +187,10 @@
196187
isa = PBXSourcesBuildPhase;
197188
buildActionMask = 2147483647;
198189
files = (
190+
8E7D0B831B936AE8003C6C50 /* KRHebbian.m in Sources */,
199191
8EFFAE891769BF2F008C8ECC /* main.m in Sources */,
200192
8EFFAE8D1769BF2F008C8ECC /* AppDelegate.m in Sources */,
201193
8EFFAE961769BF2F008C8ECC /* ViewController.m in Sources */,
202-
8EFFAEA31769BF4E008C8ECC /* KRHebbian.m in Sources */,
203194
);
204195
runOnlyForDeploymentPostprocessing = 0;
205196
};

KRHebbianAlgorithm/Classes/Algorithms/KRHebbian.h

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)