Skip to content

Commit

Permalink
Getting rid of the trie
Browse files Browse the repository at this point in the history
  • Loading branch information
gershnik committed Nov 26, 2023
1 parent 9a0de83 commit 98d954b
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 675 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Test
shell: bash
run: xcodebuild test -workspace Translit.xcworkspace -scheme Translit -testPlan Main -derivedDataPath DerivedData
run: xcodebuild test -workspace Translit.xcworkspace -scheme Translit -config Release -testPlan Main -derivedDataPath DerivedData

- name: Build
shell: bash
Expand Down
6 changes: 0 additions & 6 deletions Translit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
445D1E5F2AFE35AA00FA1C07 /* InputController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 445D1E5E2AFE35AA00FA1C07 /* InputController.mm */; };
445D1E622AFE364900FA1C07 /* Transliterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 445D1E602AFE364900FA1C07 /* Transliterator.cpp */; };
445D1E662AFFA1F700FA1C07 /* InputMethodKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 445D1E652AFFA1F700FA1C07 /* InputMethodKit.framework */; };
446DBB912B00BD53000B76EC /* TestMiniTrie.mm in Sources */ = {isa = PBXBuildFile; fileRef = 446DBB902B00BD53000B76EC /* TestMiniTrie.mm */; };
4475AD322B11F97F008DA122 /* TestStateMachine.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4475AD312B11F97F008DA122 /* TestStateMachine.mm */; };
44C675812B021410003A5BDE /* TransliteratorRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44C6757F2B021410003A5BDE /* TransliteratorRegistry.cpp */; };
44C675822B021410003A5BDE /* TransliteratorRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44C6757F2B021410003A5BDE /* TransliteratorRegistry.cpp */; };
Expand Down Expand Up @@ -125,12 +124,10 @@
445D1E5E2AFE35AA00FA1C07 /* InputController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = InputController.mm; sourceTree = "<group>"; };
445D1E602AFE364900FA1C07 /* Transliterator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Transliterator.cpp; sourceTree = "<group>"; };
445D1E612AFE364900FA1C07 /* Transliterator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Transliterator.h; sourceTree = "<group>"; };
445D1E632AFEE9A000FA1C07 /* MiniTrie.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MiniTrie.h; sourceTree = "<group>"; };
445D1E652AFFA1F700FA1C07 /* InputMethodKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = InputMethodKit.framework; path = System/Library/Frameworks/InputMethodKit.framework; sourceTree = SDKROOT; };
445D1E712AFFFAB800FA1C07 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
445D1E732AFFFAE600FA1C07 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
446DBB8E2B00BD53000B76EC /* TranslitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TranslitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
446DBB902B00BD53000B76EC /* TestMiniTrie.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = TestMiniTrie.mm; sourceTree = "<group>"; };
4475AD302B11EEE4008DA122 /* StateMachine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StateMachine.h; sourceTree = "<group>"; };
4475AD312B11F97F008DA122 /* TestStateMachine.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = TestStateMachine.mm; sourceTree = "<group>"; };
4475AD332B131F80008DA122 /* Main.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = Main.xctestplan; sourceTree = "<group>"; };
Expand Down Expand Up @@ -341,7 +338,6 @@
44C675C62B034E17003A5BDE /* MenuProtocol.h */,
445D1E5E2AFE35AA00FA1C07 /* InputController.mm */,
4475AD302B11EEE4008DA122 /* StateMachine.h */,
445D1E632AFEE9A000FA1C07 /* MiniTrie.h */,
445D1E602AFE364900FA1C07 /* Transliterator.cpp */,
445D1E612AFE364900FA1C07 /* Transliterator.h */,
44C6757F2B021410003A5BDE /* TransliteratorRegistry.cpp */,
Expand All @@ -360,7 +356,6 @@
446DBB8F2B00BD53000B76EC /* tests */ = {
isa = PBXGroup;
children = (
446DBB902B00BD53000B76EC /* TestMiniTrie.mm */,
4475AD312B11F97F008DA122 /* TestStateMachine.mm */,
44C675832B02153F003A5BDE /* TestRu.mm */,
442D25BD2B0B2D2C00204800 /* TestCommon.h */,
Expand Down Expand Up @@ -705,7 +700,6 @@
4475AD322B11F97F008DA122 /* TestStateMachine.mm in Sources */,
442D25B42B0A2E1B00204800 /* Transliterator.cpp in Sources */,
44C675842B02153F003A5BDE /* TestRu.mm in Sources */,
446DBB912B00BD53000B76EC /* TestMiniTrie.mm in Sources */,
442D25BF2B0B2D6600204800 /* TestCommon.mm in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
Loading

0 comments on commit 98d954b

Please sign in to comment.