├── .gitignore ├── .gitmodules ├── Bin ├── Lib │ ├── Graphlet │ │ ├── Lib │ │ │ ├── Graphscript │ │ │ │ ├── init.tcl │ │ │ │ ├── init │ │ │ │ │ ├── action.tcl │ │ │ │ │ ├── options.tcl │ │ │ │ │ └── postscript.tcl │ │ │ │ ├── menu │ │ │ │ │ ├── arrange.tcl │ │ │ │ │ ├── canvas_popup_menu.tcl │ │ │ │ │ ├── developer.tcl │ │ │ │ │ ├── edge.tcl │ │ │ │ │ ├── edit.tcl │ │ │ │ │ ├── file.tcl │ │ │ │ │ ├── generate.tcl │ │ │ │ │ ├── graph.tcl │ │ │ │ │ ├── help.tcl │ │ │ │ │ ├── label.tcl │ │ │ │ │ ├── layout.tcl │ │ │ │ │ ├── node.tcl │ │ │ │ │ ├── options.tcl │ │ │ │ │ ├── select.tcl │ │ │ │ │ ├── tool.tcl │ │ │ │ │ └── view.tcl │ │ │ │ └── ross │ │ │ │ │ ├── canvas.tcl │ │ │ │ │ ├── create_mode.tcl │ │ │ │ │ ├── dialog.tcl │ │ │ │ │ ├── edit_mode.tcl │ │ │ │ │ ├── frame.tcl │ │ │ │ │ ├── graph.tcl │ │ │ │ │ ├── init_gra.tcl │ │ │ │ │ ├── layout.tcl │ │ │ │ │ ├── listbox.tcl │ │ │ │ │ ├── options.tcl │ │ │ │ │ ├── selection.tcl │ │ │ │ │ ├── semstruct.tcl │ │ │ │ │ └── utility.tcl │ │ │ └── graphlet.dll │ │ └── graphlet.dll │ ├── tcl8.0 │ │ ├── auto.tcl │ │ └── init.tcl │ └── tk8.0 │ │ ├── bgerror.tcl │ │ ├── button.tcl │ │ ├── clrpick.tcl │ │ ├── comdlg.tcl │ │ ├── console.tcl │ │ ├── demos │ │ ├── Readme │ │ ├── arrow.tcl │ │ ├── bind.tcl │ │ ├── bitmap.tcl │ │ ├── browse.tcl │ │ ├── button.tcl │ │ ├── check.tcl │ │ ├── clrpick.tcl │ │ ├── colors.tcl │ │ ├── cscroll.tcl │ │ ├── ctext.tcl │ │ ├── dialog1.tcl │ │ ├── dialog2.tcl │ │ ├── entry1.tcl │ │ ├── entry2.tcl │ │ ├── filebox.tcl │ │ ├── floor.tcl │ │ ├── form.tcl │ │ ├── hello.tcl │ │ ├── hscale.tcl │ │ ├── icon.tcl │ │ ├── image1.tcl │ │ ├── image2.tcl │ │ ├── images │ │ │ ├── earth.gif │ │ │ ├── earthris.gif │ │ │ ├── face.bmp │ │ │ ├── flagdown.bmp │ │ │ ├── flagup.bmp │ │ │ ├── gray25.bmp │ │ │ ├── letters.bmp │ │ │ ├── noletter.bmp │ │ │ ├── pattern.bmp │ │ │ ├── tcllogo.gif │ │ │ └── teapot.ppm │ │ ├── items.tcl │ │ ├── ixset.tcl │ │ ├── label.tcl │ │ ├── menu.tcl │ │ ├── menubu.tcl │ │ ├── msgbox.tcl │ │ ├── plot.tcl │ │ ├── puzzle.tcl │ │ ├── radio.tcl │ │ ├── rmt.tcl │ │ ├── rolodex.tcl │ │ ├── ruler.tcl │ │ ├── sayings.tcl │ │ ├── search.tcl │ │ ├── square.tcl │ │ ├── states.tcl │ │ ├── style.tcl │ │ ├── tclIndex │ │ ├── tcolor.tcl │ │ ├── text.tcl │ │ ├── timer.tcl │ │ ├── twind.tcl │ │ ├── vscale.tcl │ │ └── widget.tcl │ │ ├── dialog.tcl │ │ ├── entry.tcl │ │ ├── focus.tcl │ │ ├── listbox.tcl │ │ ├── menu.tcl │ │ ├── msgbox.tcl │ │ ├── obsolete.tcl │ │ ├── optMenu.tcl │ │ ├── palette.tcl │ │ ├── safetk.tcl │ │ ├── scale.tcl │ │ ├── scrlbar.tcl │ │ ├── tearoff.tcl │ │ ├── text.tcl │ │ ├── tk.tcl │ │ ├── tk80.dll │ │ ├── tkfbox.tcl │ │ └── xmfbox.tcl ├── RossDev.ico ├── VisualSynan.ico ├── demo.ico ├── ger_person.base ├── ger_person.opt ├── ger_person.txt ├── german_synan.txt ├── gersyncolloc.base ├── gersyncolloc.opt ├── gersyncolloc.txt ├── rml.ini ├── run_concord.sh ├── run_seman.sh ├── run_synan.sh ├── start_aot.sh ├── syncorpora.xml ├── systemd │ ├── rml_seman.service │ └── rml_synan.service ├── tcl80.dll ├── tclpip80.dll └── tk80.dll ├── CMakeLists.txt ├── Dicts ├── Aoss │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── Bigrams │ └── create │ │ ├── BuildIndex.bat │ │ ├── Create │ │ ├── unite.bat │ │ ├── unite_bigrams.awk │ │ └── unite_wf.bat │ │ └── create.bat ├── CMakeLists.txt ├── Collocs │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── EngCollocs │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── EngObor │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── GerObor │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── GerSynan │ ├── CMakeLists.txt │ ├── other_lists │ │ ├── adj_prp.txt │ │ └── berufe.txt │ ├── postmorph.grm │ ├── postmorph.opt │ ├── src │ │ ├── acr.txt │ │ ├── det.txt │ │ ├── family.txt │ │ ├── firstname.txt │ │ ├── geo.txt │ │ ├── geoadj.txt │ │ ├── hum.txt │ │ ├── numbers.grm │ │ ├── param.txt │ │ ├── person.grm │ │ ├── prep_akk.txt │ │ ├── prep_dat.txt │ │ ├── prep_gen.txt │ │ ├── prepositions.grm │ │ ├── schaltwort.txt │ │ └── simple_syn.grm │ ├── synan.grm │ ├── synan.opt │ └── unused │ │ ├── SimpleGrammar │ │ ├── Adel.txt │ │ ├── AnrTi.txt │ │ ├── CMakeLists.txt │ │ ├── abbr.txt │ │ ├── akGr.txt │ │ ├── bad_ger_names.txt │ │ ├── coll.txt │ │ ├── del.txt │ │ ├── example.grm │ │ ├── example.opt │ │ ├── input.lem │ │ ├── person.grm │ │ ├── person.opt │ │ ├── test.grm │ │ ├── test.opt │ │ ├── update_thes_list.bat │ │ └── whoiswho.txt │ │ ├── adj_prp.txt │ │ ├── berufe.morph │ │ ├── geoadj.txt │ │ └── gformats.all ├── GraphAn │ ├── abbr.eng │ ├── abbr.ger │ ├── abbr.rus │ ├── enames.txt │ ├── extensions.txt │ ├── idents.txt │ ├── keyboard.txt │ ├── keyword │ ├── ross.txt │ └── space.dic ├── Obor │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── Ross │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt ├── RusSynan │ ├── adj_group.grm │ ├── adj_noun.grm │ ├── compile.bat │ ├── gformats.opt │ ├── rformats.grm │ └── vssver.scc ├── SrcBinDict │ ├── ASP.txt │ ├── CMakeLists.txt │ ├── all.eng │ ├── create_good_freq.bat │ ├── dict2809.txt │ ├── dict_labels.json │ ├── input.lem │ ├── russup.txt │ ├── shira.txt │ ├── stopwords.txt │ ├── synonyms.txt │ ├── to_put │ ├── troiki_pre │ ├── troiki_pref │ ├── troiki_suff │ ├── update_rus_hom_freq.bat │ └── wt.link ├── SynAn │ ├── adv_adj.txt │ ├── comp_adv.dat │ ├── dct_prep_acc.txt │ ├── dct_prep_dat.txt │ ├── dct_prep_gen.txt │ ├── dct_prep_instr.txt │ ├── dct_prep_nom.txt │ ├── dct_prep_prep.txt │ ├── gformats.automat │ ├── gformats.bak │ ├── gformats.grammar_precompiled │ ├── gformats.opt │ ├── gformats.table │ ├── gformats.txt │ ├── grm_adjectivephrases.txt │ ├── grm_adverbphrases.txt │ ├── grm_conjunctions.txt │ ├── grm_nounphrases.txt │ ├── grm_numerals.txt │ ├── grm_other.txt │ ├── grm_prepositionphrases.txt │ ├── grm_terminals.txt │ ├── grm_test.txt │ ├── grm_verbphrases.txt │ ├── instr_obj.txt │ ├── mapost_collocs.txt │ ├── noun_num.dat │ ├── num_pr.dat │ ├── profes.txt │ ├── razr_conj.grm │ └── verbs_with_inf.txt ├── TimeRoss │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt └── Trigram │ ├── CMakeLists.txt │ ├── check.bat │ ├── convert_to_bin.bat │ ├── debug_viterbi.sh │ ├── default.config │ ├── default.tagset │ ├── default │ ├── base.lex.gz │ └── base.ngram.gz │ ├── full.config │ ├── full.rev.config │ ├── full.rev │ ├── base.lex.gz │ └── base.ngram.gz │ ├── full.tagset │ ├── result.bucketing │ ├── ruscorp.config │ └── test.bat ├── Docs ├── AgramtabInterfaceRus.doc ├── MorphWizard.rtf ├── Morph_UNIX.txt ├── RusSyntax.doc ├── SemanInterfaceRus.doc ├── TimeRoss.doc └── java-jni-readme.txt ├── Logs └── .place_holder ├── Source ├── CMakeLists.txt ├── common │ ├── BigramsReader.h │ ├── CMakeLists.txt │ ├── Chunk.h │ ├── cortege.cpp │ ├── cortege.h │ ├── gra_descr.cpp │ ├── gra_descr.h │ ├── http_server.cpp │ ├── http_server.h │ ├── test_corpus.cpp │ └── test_corpus.h ├── dicts │ ├── AprDictGen │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── Bigrams │ │ ├── BigramsIndex │ │ │ ├── BigramsIndex.cpp │ │ │ └── CMakeLists.txt │ │ ├── BigramsReader.cpp │ │ ├── BigramsReader.h │ │ ├── BigramsTest │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ ├── Text2Bigrams │ │ │ ├── CMakeLists.txt │ │ │ ├── MergeFiles.cpp │ │ │ ├── MergeFiles.h │ │ │ ├── Text2Bigrams.cpp │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── a1.txt │ │ │ │ ├── a2.txt │ │ │ │ ├── a3.txt │ │ │ │ └── test_merge_files.cpp │ │ └── test_data │ │ │ ├── english_text.txt │ │ │ ├── file.con │ │ │ └── output.canon │ ├── BinaryDictsClient │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── BinaryDictsLib │ │ ├── AspPairDict.cpp │ │ ├── AspPairDict.h │ │ ├── BinaryDictionary.cpp │ │ ├── BinaryDictionary.h │ │ ├── CMakeLists.txt │ │ ├── DerivDict.cpp │ │ ├── DerivDict.h │ │ ├── FreqDict.cpp │ │ ├── FreqDict.h │ │ ├── ParadigmPairFreq.h │ │ ├── SetOfWordPairs.cpp │ │ ├── SetOfWordPairs.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── dict2809.txt │ │ │ ├── dict_labels.json │ │ │ └── test_bin_dict.cpp │ ├── CMakeLists.txt │ ├── GenFreqDict │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── RmlThesLib │ │ ├── CMakeLists.txt │ │ ├── Concepts.cpp │ │ ├── Models.cpp │ │ ├── Models.h │ │ ├── Relats.cpp │ │ ├── RmlThesConsts.h │ │ ├── StdRmlThes.cpp │ │ ├── StdRmlThes.h │ │ ├── Synonyms.cpp │ │ ├── Termins.cpp │ │ ├── ThesOborots.cpp │ │ ├── Thesaurus.cpp │ │ └── Thesaurus.h │ ├── StructDictLib │ │ ├── CMakeLists.txt │ │ ├── CortegeContainer.cpp │ │ ├── CortegeContainer.h │ │ ├── DictConfig.cpp │ │ ├── DictConfig.h │ │ ├── Domen.cpp │ │ ├── Domen.h │ │ ├── Field.cpp │ │ ├── Field.h │ │ ├── ItemsContainer.cpp │ │ ├── ItemsContainer.h │ │ ├── Ross.cpp │ │ ├── Ross.h │ │ ├── Signat.cpp │ │ ├── Signat.h │ │ ├── StdRoss.cpp │ │ ├── StdRoss.h │ │ ├── StructDictConsts.h │ │ ├── StructEntry.cpp │ │ ├── StructEntry.h │ │ ├── TempArticle.cpp │ │ ├── TempArticle.h │ │ ├── TextField.h │ │ └── python │ │ │ └── add_syn_rel.py │ ├── StructDictLoader │ │ ├── CMakeLists.txt │ │ ├── Main.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test1 │ │ │ ├── config.rcf │ │ │ ├── domains.json │ │ │ ├── domitems.bin │ │ │ ├── domitems.tsv │ │ │ ├── fields.json │ │ │ ├── items.bin │ │ │ └── ross.txt │ │ │ ├── test2 │ │ │ ├── config.rcf │ │ │ ├── domains.json │ │ │ ├── domitems.tsv │ │ │ ├── fields.json │ │ │ └── ross.txt │ │ │ └── test_sruct_dict.cpp │ ├── asp_read │ │ ├── AspTest │ │ │ ├── CMakeLists.txt │ │ │ └── Main.cpp │ │ ├── CMakeLists.txt │ │ └── asp_read.cpp │ ├── deriv_read │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── gen_dual_freq │ │ └── gen_dual_freq.cpp ├── graphan │ ├── CMakeLists.txt │ ├── GraphanLib │ │ ├── CMakeLists.txt │ │ ├── C_desc.cpp │ │ ├── Consent.cpp │ │ ├── Consent.h │ │ ├── Cs_hiera.cpp │ │ ├── GraphanDicts.cpp │ │ ├── GraphanDicts.h │ │ ├── GraphmatFile.cpp │ │ ├── GraphmatFile.h │ │ ├── HTMLConv.h │ │ ├── HtmlConv.cpp │ │ ├── Oborots.cpp │ │ ├── Sentences.cpp │ │ ├── StdAfx.cpp │ │ ├── StdGraph.h │ │ ├── UnitHolder.cpp │ │ ├── UnitHolder.h │ │ ├── Writegra.cpp │ │ ├── abbrev.cpp │ │ ├── abbrev.h │ │ ├── graline.cpp │ │ ├── graline.h │ │ ├── graphan.html │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_graphan.cpp │ └── GraphmatThick │ │ ├── CMakeLists.txt │ │ └── GraphmatThick.cpp ├── morphan │ ├── CMakeLists.txt │ ├── FileLem │ │ ├── CMakeLists.txt │ │ └── FileLem.cpp │ └── LemmatizerLib │ │ ├── CMakeLists.txt │ │ ├── Homonym.cpp │ │ ├── Homonym.h │ │ ├── LemTextCreator.cpp │ │ ├── LemTextCreator.h │ │ ├── LemWord.cpp │ │ ├── LemWord.h │ │ ├── LemmatizedText.cpp │ │ └── LemmatizedText.h ├── seman │ ├── CMakeLists.txt │ ├── SemanLib │ │ ├── AllRossesHolder.cpp │ │ ├── AllRossesHolder.h │ │ ├── CMakeLists.txt │ │ ├── DictUnitInterp.cpp │ │ ├── DictUnitInterp.h │ │ ├── GenerateNewForm.cpp │ │ ├── HierarchyHolder.cpp │ │ ├── HierarchyHolder.h │ │ ├── LexFuncts.h │ │ ├── RussianSynthesis.cpp │ │ ├── SemPattern.cpp │ │ ├── SemPattern.h │ │ ├── SemStructureBuilder.cpp │ │ ├── SemStructureBuilder.h │ │ ├── SemanHypotGraph.cpp │ │ ├── SemanPattern.cpp │ │ ├── SemanticClause.cpp │ │ ├── SemanticColloc.cpp │ │ ├── SemanticCommon.cpp │ │ ├── SemanticCompar.cpp │ │ ├── SemanticGraph.cpp │ │ ├── SemanticIdealize.cpp │ │ ├── SemanticLength.cpp │ │ ├── SemanticLexFuncts.cpp │ │ ├── SemanticLoc.cpp │ │ ├── SemanticMNA.cpp │ │ ├── SemanticNumeral.cpp │ │ ├── SemanticRusPrimitives.cpp │ │ ├── SemanticRusStructure.h │ │ ├── SemanticStrAn.cpp │ │ ├── SemanticStructure.h │ │ ├── SemanticSynRelation.cpp │ │ ├── SemanticThesaurus.cpp │ │ ├── SemanticTree.cpp │ │ ├── SemanticWeight.cpp │ │ ├── SemanticWeight.h │ │ ├── SemanticWeightComponents.cpp │ │ ├── SemanticsHolder.cpp │ │ ├── SemanticsHolder.h │ │ ├── TransferSyntaxRelationToSemantics.cpp │ │ ├── TranslatorHolder.cpp │ │ ├── TranslatorHolder.h │ │ ├── Valency.cpp │ │ ├── Valency.h │ │ ├── VisualGraph.cpp │ │ ├── VisualGraph.h │ │ ├── analytical.cpp │ │ ├── answers.cpp │ │ ├── dict_type.cpp │ │ ├── dict_type.h │ │ ├── fem_deriv.cpp │ │ ├── lex_variant.cpp │ │ ├── rus_sem_relation.cpp │ │ ├── rus_sem_relation.h │ │ ├── rus_sem_word.cpp │ │ ├── rus_sem_word.h │ │ ├── sem_options.cpp │ │ ├── sem_options.h │ │ ├── sem_relation.cpp │ │ ├── sem_relation.h │ │ ├── sem_tcl.cpp │ │ ├── sem_word.cpp │ │ ├── sem_word.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── struct_dict_holder.cpp │ │ ├── struct_dict_holder.h │ │ ├── syn_realization.cpp │ │ ├── syn_realization.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_seman.cpp │ │ ├── time_phrases.cpp │ │ └── time_phrases.h │ ├── TestSeman │ │ ├── CMakeLists.txt │ │ ├── TestSeman.cpp │ │ └── test │ │ │ ├── analytical │ │ │ ├── analyt.txt │ │ │ └── analyt.txt.seman │ │ │ ├── long │ │ │ ├── corpora100.txt │ │ │ └── corpora100.txt.seman │ │ │ ├── seman │ │ │ ├── 01.simple.txt │ │ │ ├── 01.simple.txt.seman │ │ │ ├── 02.words.txt │ │ │ ├── 02.words.txt.seman │ │ │ ├── 03.collocs.txt │ │ │ ├── 03.collocs.txt.seman │ │ │ ├── 04.comparative.txt │ │ │ └── 04.comparative.txt.seman │ │ │ └── translate │ │ │ ├── num.txt │ │ │ ├── num.txt.seman │ │ │ ├── time.txt │ │ │ └── time.txt.seman │ └── Transfer │ │ ├── CMakeLists.txt │ │ ├── EngAdverbs.cpp │ │ ├── EngAlg_1.cpp │ │ ├── EngAlg_2.cpp │ │ ├── EngAlg_3.cpp │ │ ├── EngAlg_4.cpp │ │ ├── EngAlg_5.cpp │ │ ├── EngArticle.cpp │ │ ├── EngAtomic.cpp │ │ ├── EngBinaryTranslate.cpp │ │ ├── EngBinaryTranslate.h │ │ ├── EngEquivs.cpp │ │ ├── EngHelper.cpp │ │ ├── EngInterp.cpp │ │ ├── EngNodeCreate.cpp │ │ ├── EngNoun.cpp │ │ ├── EngPrep.cpp │ │ ├── EngPrimitives.cpp │ │ ├── EngPrimitives.h │ │ ├── EngSemStructure.h │ │ ├── EngSynthes.cpp │ │ ├── EngSynthes.h │ │ ├── EngTerminTranslate.cpp │ │ ├── EngTimeNodeTranslate.cpp │ │ ├── EngVerbTense.cpp │ │ ├── EngVerbTense.h │ │ ├── NodeHelper.cpp │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TransPrepNoun.cpp │ │ ├── TransRels.cpp │ │ ├── TransRules.cpp │ │ ├── TransTense.cpp │ │ ├── TranseClause.cpp │ │ ├── TranslateToEnglish.cpp │ │ ├── eng_word.cpp │ │ ├── eng_word.h │ │ ├── numerals.cpp │ │ ├── numerals.h │ │ ├── tests │ │ ├── CMakeLists.txt │ │ └── test_transfer.cpp │ │ └── verb_tense.h ├── synan │ ├── CMakeLists.txt │ ├── EngSynanLib │ │ ├── CMakeLists.txt │ │ ├── EngFormatCaller.cpp │ │ ├── EngFormatCaller.h │ │ ├── EngOborDic.cpp │ │ ├── EngOborDic.h │ │ ├── EngSentence.cpp │ │ ├── EngSentence.h │ │ ├── EngSyntaxOpt.cpp │ │ ├── EngSyntaxOpt.h │ │ ├── StdAfx.h │ │ └── stdafx.cpp │ ├── GerPostMorph │ │ ├── CMakeLists.txt │ │ ├── GermanPostMorph.cpp │ │ └── GermanPostMorph.h │ ├── GerSynanLib │ │ ├── Additions.cpp │ │ ├── AdjNomen.cpp │ │ ├── Adjektiv.cpp │ │ ├── CMakeLists.txt │ │ ├── Familien.cpp │ │ ├── GLRFormats.cpp │ │ ├── GenitNP.cpp │ │ ├── GerAnalytical.cpp │ │ ├── GerBaseRules.cpp │ │ ├── GerBuildInitialClauses.cpp │ │ ├── GerClause.cpp │ │ ├── GerClause.h │ │ ├── GerFormatCaller.cpp │ │ ├── GerFormatCaller.h │ │ ├── GerGeo.cpp │ │ ├── GerGroup.cpp │ │ ├── GerGroup.h │ │ ├── GerOborot.cpp │ │ ├── GerOborot.h │ │ ├── GerSentence.cpp │ │ ├── GerSentence.h │ │ ├── GerSubject.cpp │ │ ├── GerSynan.cpp │ │ ├── GerSynan.h │ │ ├── GerSyntaxOpt.cpp │ │ ├── GerSyntaxOpt.h │ │ ├── GerThesaurus.cpp │ │ ├── GerThesaurus.h │ │ ├── GerWord.cpp │ │ ├── GerWord.h │ │ ├── Numeralia.cpp │ │ ├── SimilarNP.cpp │ │ ├── Verb.cpp │ │ └── prepositions.cpp │ ├── MAPostLib │ │ ├── CMakeLists.txt │ │ ├── Fio.cpp │ │ ├── MAPostInit.cpp │ │ ├── MAPostMain.cpp │ │ ├── MAPostMain.h │ │ ├── MapostNumbers.cpp │ │ └── PostMorphInterface.h │ ├── RusSynanLib │ │ ├── AnalyticalForms.cpp │ │ ├── BaseRules.cpp │ │ ├── CMakeLists.txt │ │ ├── FormatCallerInit.cpp │ │ ├── FormatCallerInit.h │ │ ├── FragCoord.cpp │ │ ├── FragDisrupt.cpp │ │ ├── FragPustycha.cpp │ │ ├── HomonymsKiller.cpp │ │ ├── HomonymsKiller.h │ │ ├── NSO.cpp │ │ ├── Participles.cpp │ │ ├── RuleForSimilarNounGroupClauses.cpp │ │ ├── RusBuildInitialClauses.cpp │ │ ├── RusClause.cpp │ │ ├── RusClause.h │ │ ├── RusGroup.cpp │ │ ├── RusGroup.h │ │ ├── RusOborot.cpp │ │ ├── RusOborot.h │ │ ├── RusParenthesis.cpp │ │ ├── RusPlmLine.cpp │ │ ├── RusPlmLine.h │ │ ├── RusSentence.cpp │ │ ├── RusSentence.h │ │ ├── RusSyntaxOpt.cpp │ │ ├── RusSyntaxOpt.h │ │ ├── RusThesaurus.cpp │ │ ├── RusThesaurus.h │ │ ├── RusWord.cpp │ │ ├── RusWord.h │ │ ├── StdSynan.cpp │ │ ├── StdSynan.h │ │ ├── SynSubjPred.cpp │ │ ├── SynanDash.cpp │ │ └── groups │ │ │ ├── Adverbs.cpp │ │ │ ├── Gleiche.cpp │ │ │ ├── RusFormatCaller.cpp │ │ │ ├── RusFormatCaller.h │ │ │ ├── Selective.cpp │ │ │ ├── Verbs.cpp │ │ │ ├── foreign_term.cpp │ │ │ ├── gen_chains.cpp │ │ │ ├── names.cpp │ │ │ ├── noun_adjunct_group.cpp │ │ │ ├── numbers.cpp │ │ │ ├── prepositions.cpp │ │ │ ├── rules.h │ │ │ ├── similar_adjs.cpp │ │ │ ├── similar_advs.cpp │ │ │ ├── similar_common.cpp │ │ │ ├── similar_infs.cpp │ │ │ ├── similar_noun_groups.cpp │ │ │ └── similar_numerals.cpp │ ├── SimpleGrammarLib │ │ ├── AhoKorasick.cpp │ │ ├── AhoKorasick.h │ │ ├── CMakeLists.txt │ │ ├── ChunkNode.cpp │ │ ├── ChunkNode.h │ │ ├── ChunkParser.cpp │ │ ├── ChunkParser.h │ │ ├── FirstAndFollow.cpp │ │ ├── GLR.cpp │ │ ├── GLR.h │ │ ├── GLRTable.cpp │ │ ├── GLRTable.h │ │ ├── GetMaxCoverage.cpp │ │ ├── GrammarItem.cpp │ │ ├── GrammarItem.h │ │ ├── InputSymbol.cpp │ │ ├── InputSymbol.h │ │ ├── LR-items.cpp │ │ ├── LR-items.h │ │ ├── Loader.cpp │ │ ├── MyFlexLexer.h │ │ ├── Parser.cpp │ │ ├── SimpleGrammar.h │ │ ├── SimpleGrammarLib.cpp │ │ ├── SimpleGrammarLib.h │ │ ├── SolvePeriodAmbiguity.cpp │ │ ├── SourceGrammarParser.cpp │ │ ├── chunker.l │ │ ├── chunker.y │ │ ├── my_stl.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ ├── 01.basic │ │ │ │ ├── subfolder │ │ │ │ │ ├── inc.grm │ │ │ │ │ └── noun.txt │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ ├── 02.np │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ ├── 03.register │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ ├── 04.coordination │ │ │ │ ├── inc.grm │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ ├── 05.predicted │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ └── 06.numbers │ │ │ │ ├── test.grm │ │ │ │ └── test.opt │ │ │ └── test_grammar.cpp │ ├── SimpleGrammarPrecompiled │ │ ├── CMakeLists.txt │ │ └── SimpleGrammarPrecompiled.cpp │ ├── SynCommonLib │ │ ├── BuildInitialClauses.cpp │ │ ├── CMakeLists.txt │ │ ├── Clause.cpp │ │ ├── Clause.h │ │ ├── ClauseCollection.cpp │ │ ├── CoverageKillHomonyms.cpp │ │ ├── FindTermins.cpp │ │ ├── FormatCaller.cpp │ │ ├── FormatCaller.h │ │ ├── GLRFormats.cpp │ │ ├── Group.cpp │ │ ├── Group.h │ │ ├── LemmaList.cpp │ │ ├── LemmaList.h │ │ ├── MorphVariant.cpp │ │ ├── MorphVariant.h │ │ ├── Period.h │ │ ├── RelationsIterator.cpp │ │ ├── RelationsIterator.h │ │ ├── Sentence.cpp │ │ ├── Sentence.h │ │ ├── SynHomonym.cpp │ │ ├── SynHomonym.h │ │ ├── SynPlmLine.cpp │ │ ├── SynPlmLine.h │ │ ├── SyntaxInit.cpp │ │ ├── SyntaxInit.h │ │ ├── ThesaurusForSyntax.cpp │ │ ├── ThesaurusForSyntax.h │ │ ├── Word.cpp │ │ ├── Word.h │ │ ├── oborot.cpp │ │ ├── oborot.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── SynanLib │ │ ├── CMakeLists.txt │ │ ├── SentencesCollection.cpp │ │ ├── SentencesCollection.h │ │ ├── SyntaxHolder.cpp │ │ ├── SyntaxHolder.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_synan.cpp │ ├── TestMapost │ │ ├── CMakeLists.txt │ │ ├── TestMapost.cpp │ │ └── test │ │ │ └── Russian │ │ │ ├── fio.txt │ │ │ ├── fio.txt.mapost │ │ │ ├── fixed_collocs.txt │ │ │ ├── fixed_collocs.txt.mapost │ │ │ ├── hom.txt │ │ │ ├── hom.txt.mapost │ │ │ ├── indecline.txt │ │ │ ├── indecline.txt.mapost │ │ │ ├── lle.txt │ │ │ ├── lle.txt.mapost │ │ │ ├── num.txt │ │ │ ├── num.txt.mapost │ │ │ ├── other.txt │ │ │ ├── other.txt.mapost │ │ │ ├── redub.txt │ │ │ ├── redub.txt.mapost │ │ │ ├── seminouns.txt │ │ │ └── seminouns.txt.mapost │ └── TestSynan │ │ ├── CMakeLists.txt │ │ ├── TestSynan.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── synan │ │ ├── German │ │ │ ├── test.txt │ │ │ └── test.txt.synan │ │ └── Russian │ │ │ ├── 01.adj_noun.txt │ │ │ ├── 01.adj_noun.txt.synan │ │ │ ├── 02.adv.txt │ │ │ ├── 02.adv.txt.synan │ │ │ ├── 03.ambig.txt │ │ │ ├── 03.ambig.txt.synan │ │ │ ├── 04.names.txt │ │ │ ├── 04.names.txt.synan │ │ │ ├── 05.primitive.txt │ │ │ ├── 05.primitive.txt.synan │ │ │ ├── 06.thesaurus.txt │ │ │ ├── 06.thesaurus.txt.synan │ │ │ ├── 07.subdue.txt │ │ │ ├── 07.subdue.txt.synan │ │ │ ├── 08.conj.txt │ │ │ ├── 08.conj.txt.synan │ │ │ ├── 09.numbers.txt │ │ │ ├── 09.numbers.txt.synan │ │ │ ├── 10.clauses.txt │ │ │ ├── 10.clauses.txt.synan │ │ │ ├── 11.unsorted.txt │ │ │ ├── 11.unsorted.txt.synan │ │ │ ├── 12.very_long.txt │ │ │ └── 12.very_long.txt.synan │ │ └── thes │ │ ├── CMakeLists.txt │ │ ├── CheckThesRead.cpp │ │ └── data │ │ ├── StatThes │ │ ├── Concepts.txt │ │ ├── FreqCollocTypes.txt │ │ ├── GerOborots.txt │ │ ├── Lemmas.txt │ │ ├── Relats.txt │ │ ├── RusOborots.txt │ │ ├── Synonyms.txt │ │ └── TextEntr.txt │ │ └── atomic_group.canon.txt ├── windows │ ├── CMakeLists.txt │ ├── Demo │ │ ├── CMakeLists.txt │ │ ├── Splash.cpp │ │ ├── Splash.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── demo.rc │ │ ├── demoDlg.cpp │ │ ├── demoDlg.h │ │ ├── res │ │ │ ├── Book01a.ico │ │ │ ├── Book04.ico │ │ │ ├── Splsh16.bmp │ │ │ ├── demo.ico │ │ │ ├── demo.rc2 │ │ │ └── morf1.BMP │ │ └── resource.h │ ├── FindIDL.cmake │ ├── Lemmatizer │ │ ├── CMakeLists.txt │ │ ├── COMLemmatizerEnglish.rgs │ │ ├── COMLemmatizerGerman.rgs │ │ ├── COMLemmatizerRussian.rgs │ │ ├── COMParadigm.rgs │ │ ├── COMParadigmCollection.rgs │ │ ├── ComLemmatizers.cpp │ │ ├── ComLemmatizers.h │ │ ├── ComParadigm.cpp │ │ ├── ComParadigm.h │ │ ├── Lemmatizer.aps │ │ ├── Lemmatizer.cpp │ │ ├── Lemmatizer.def │ │ ├── Lemmatizer.idl │ │ ├── Lemmatizer.rc │ │ ├── ParadigmCollection.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── lemmatizer_idl │ │ │ └── CMakeLists.txt │ │ └── lemmatizer_resource.h │ ├── Morphwizard │ │ ├── AccentModelDiff.cpp │ │ ├── AccentModelDiff.h │ │ ├── AccentWizardDlg.cpp │ │ ├── AccentWizardDlg.h │ │ ├── CMakeLists.txt │ │ ├── ChangeAllDlg.cpp │ │ ├── ChangeAllDlg.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ColorRichEditView.cpp │ │ ├── ColorRichEditView.h │ │ ├── DlgDelAnc.cpp │ │ ├── DlgDelAnc.h │ │ ├── DlgLogin.cpp │ │ ├── DlgLogin.h │ │ ├── FileEditCtrl.cpp │ │ ├── FileEditCtrl.h │ │ ├── GriIni.cpp │ │ ├── GriIni.h │ │ ├── HELPIDS.H │ │ ├── InputBox.cpp │ │ ├── InputBox.h │ │ ├── MDITabs.cpp │ │ ├── MDITabs.h │ │ ├── MWDocument.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── Morphwizard.cpp │ │ ├── Morphwizard.h │ │ ├── Morphwizard.hpj │ │ ├── Morphwizard.rc │ │ ├── MorphwizardDoc.cpp │ │ ├── MorphwizardDoc.h │ │ ├── MorphwizardView.cpp │ │ ├── MorphwizardView.h │ │ ├── OXResizeGadget.cpp │ │ ├── OXResizeGadget.h │ │ ├── ParadigmDifferences.cpp │ │ ├── ParadigmDifferences.h │ │ ├── ProgressBar.cpp │ │ ├── ProgressBar.h │ │ ├── QueryHistory.cpp │ │ ├── QueryHistory.h │ │ ├── ReadMe.txt │ │ ├── SLFDocument.cpp │ │ ├── SLFDocument.h │ │ ├── SLFView.cpp │ │ ├── SLFView.h │ │ ├── SyntaxColorizer.cpp │ │ ├── SyntaxColorizer.h │ │ ├── res │ │ │ ├── Morphwizard.ico │ │ │ ├── Morphwizard.rc2 │ │ │ ├── MorphwizardDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ └── readonly.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── RossDev │ │ ├── ArticleDoc.cpp │ │ ├── ArticleDoc.h │ │ ├── ArticleView.cpp │ │ ├── ArticleView.h │ │ ├── CMakeLists.txt │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── CntrItem.cpp │ │ ├── CntrItem.h │ │ ├── FieldList.cpp │ │ ├── FieldList.h │ │ ├── FindByStrDlg.cpp │ │ ├── FindByStrDlg.h │ │ ├── FindWrongRefs.cpp │ │ ├── FindWrongRefs.h │ │ ├── FldScroll.cpp │ │ ├── FldScroll.h │ │ ├── Hierarchy.cpp │ │ ├── Hierarchy.h │ │ ├── HierarchyDoc.cpp │ │ ├── HierarchyDoc.h │ │ ├── InputBox.cpp │ │ ├── InputBox.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── NewArticleWizard.cpp │ │ ├── NewArticleWizard.h │ │ ├── NewRefArticles.cpp │ │ ├── NewRefArticles.h │ │ ├── NewTextEntry.cpp │ │ ├── NewTextEntry.h │ │ ├── OXResizeGadget.cpp │ │ ├── OXResizeGadget.h │ │ ├── PocketDoc.cpp │ │ ├── PocketDoc.h │ │ ├── PocketForm.cpp │ │ ├── PocketForm.h │ │ ├── PosChoicer.cpp │ │ ├── PosChoicer.h │ │ ├── ProgressForm.cpp │ │ ├── ProgressForm.h │ │ ├── ReportDoc.cpp │ │ ├── ReportDoc.h │ │ ├── ReportView.cpp │ │ ├── ReportView.h │ │ ├── RossDev.cpp │ │ ├── RossDev.h │ │ ├── RossDev.rc │ │ ├── RossDev.rgs │ │ ├── RossDoc.cpp │ │ ├── RossDoc.h │ │ ├── SemanticStrDoc.cpp │ │ ├── SemanticStrDoc.h │ │ ├── SemanticStrView.cpp │ │ ├── SemanticStrView.h │ │ ├── SizeFormView.cpp │ │ ├── SizeFormView.h │ │ ├── Splash.cpp │ │ ├── Splash.h │ │ ├── Splsh16.bmp │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── SyntaxColorizer.cpp │ │ ├── SyntaxColorizer.h │ │ ├── TckTkWrapper.h │ │ ├── Translations.cpp │ │ ├── Translations.h │ │ ├── WordList.cpp │ │ ├── WordList.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── picture.cpp │ │ ├── picture.h │ │ ├── res │ │ │ ├── RossDev.ico │ │ │ ├── RossDev.rc2 │ │ │ ├── RossDevDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ ├── emptytoo.bmp │ │ │ ├── icon1.ico │ │ │ └── toolbar1.bmp │ │ ├── resource.h │ │ ├── rowcursor.cpp │ │ ├── rowcursor.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── init_tcl_tk │ │ │ ├── CMakeLists.txt │ │ │ └── test_tcl.cpp │ ├── TestLemmatizerCOM │ │ ├── CMakeLists.txt │ │ ├── TestLemmatizerCOM.cpp │ │ └── test │ │ │ └── Russian │ │ │ ├── canon.lemma │ │ │ └── text.txt │ ├── VisualSynan │ │ ├── CMakeLists.txt │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── DlgHom.cpp │ │ ├── DlgHom.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── ReportDoc.cpp │ │ ├── ReportDoc.h │ │ ├── Res │ │ │ ├── Synt_1.bmp │ │ │ ├── Toolbar.bmp │ │ │ ├── VisualSynAnDoc.ico │ │ │ ├── VisualSynan │ │ │ ├── VisualSynan.ico │ │ │ ├── VisualSynan.rc2 │ │ │ ├── Wait.avi │ │ │ └── bitmap1.bmp │ │ ├── Resource.h │ │ ├── SentenceLine.cpp │ │ ├── SentenceLine.h │ │ ├── Splash.cpp │ │ ├── Splash.h │ │ ├── Splsh16.bmp │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── SynReport.cpp │ │ ├── SynReport.h │ │ ├── SynanWrapper.cpp │ │ ├── SynanWrapper.h │ │ ├── THREAD.CPP │ │ ├── THREAD.H │ │ ├── VisualClause.cpp │ │ ├── VisualGroup.cpp │ │ ├── VisualGroups.cpp │ │ ├── VisualSentence.cpp │ │ ├── VisualSentences.cpp │ │ ├── VisualSentences.h │ │ ├── VisualSynan.cpp │ │ ├── VisualSynan.h │ │ ├── VisualSynan.rc │ │ ├── VisualSynanDoc.cpp │ │ ├── VisualSynanDoc.h │ │ ├── VisualSynanView.cpp │ │ ├── VisualSynanView.h │ │ ├── VisualWord.cpp │ │ ├── Wait.avi │ │ ├── WaitDlg.cpp │ │ ├── WaitDlg.h │ │ ├── WaitThread.cpp │ │ └── WaitThread.h │ ├── tcl_source │ │ ├── tcl8.0.5 │ │ │ └── generic │ │ │ │ └── tcl.h │ │ ├── tcl80.dll │ │ ├── tcl80.lib │ │ ├── tclpip80.dll │ │ ├── tclreg80.dll │ │ └── tclreg80.lib │ └── tk_source │ │ ├── tk8.0.5 │ │ ├── generic │ │ │ └── tk.h │ │ └── xlib │ │ │ └── X11 │ │ │ ├── X.h │ │ │ ├── Xatom.h │ │ │ ├── Xfuncproto.h │ │ │ ├── Xlib.h │ │ │ ├── Xutil.h │ │ │ ├── cursorfont.h │ │ │ ├── keysym.h │ │ │ ├── keysymdef.h │ │ │ └── license.terms │ │ ├── tk80.dll │ │ └── tk80.lib └── www │ ├── CMakeLists.txt │ ├── FindLibevent.cmake │ ├── JNIMorphAPI │ ├── CMakeLists.txt │ ├── JNIMorphAPI.cpp │ ├── build.sh │ └── ru_aot_morph_JavaMorphAPI.h │ ├── JNIMorphAPITest │ ├── CMakeLists.txt │ └── JNIMorphTest.cpp │ ├── SemanDaemon │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── translate.cpp │ └── translate.h │ ├── SynanDaemon │ ├── CMakeLists.txt │ ├── JVisualSynAnParamBuilder.cpp │ ├── JVisualSynAnParamBuilder.h │ ├── Main.cpp │ ├── SynanDmn.cpp │ └── SynanDmn.h │ ├── SynanDaemonAWS │ ├── CMakeLists.txt │ └── main.cpp │ ├── cgi-bin │ ├── ddc_search_cgi.py │ └── forum │ │ ├── forum.cgi │ │ └── forum.tar.gz │ ├── nginx │ ├── 00-default │ └── aot.ru │ └── wwwroot │ ├── .htaccess │ ├── Nozhov │ ├── chapter1.pdf │ ├── chapter2.pdf │ ├── chapter3.pdf │ ├── chapter4.pdf │ ├── index.html │ ├── msot.pdf │ ├── supplement1.pdf │ └── supplement2.pdf │ ├── aot.css │ ├── authors.html │ ├── close.html │ ├── concor.html │ ├── corp2.html │ ├── demo │ ├── bigrams.html │ ├── bigrams.js │ ├── common.js │ ├── graph.html │ ├── libs │ │ ├── backbone.js │ │ ├── joint.css │ │ ├── joint.js │ │ ├── jquery.js │ │ └── lodash.js │ ├── morph.html │ ├── morph.js │ ├── morph_links.htm │ ├── old │ │ └── SemGraph.java │ ├── rus_syn_consts.html │ ├── seman.css │ ├── seman.js │ ├── synan.css │ ├── synan.js │ ├── synt.html │ ├── translat.html │ └── translate.js │ ├── doc_examples │ ├── test.doc │ └── test.html │ ├── docs │ ├── Dialog_text.htm │ ├── Graphan │ │ ├── _2TestCOMGraphan_2Test2_8cpp-example.html │ │ ├── _2TestCOMGraphan_2TestCOMGraphan_8cpp-example.html │ │ ├── annotated.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── examples.html │ │ ├── files.html │ │ ├── functions.html │ │ ├── graphan_8idl-source.html │ │ ├── index.html │ │ ├── interfaceIGraphmatFile-members.html │ │ └── interfaceIGraphmatFile.html │ ├── MiningQueryExpan.pdf │ ├── OverviewOfConcordance.htm │ ├── RusAnnotCorpusReadme.htm │ ├── RusCorporaHMM.htm │ ├── RusCorporaHMM_files │ │ └── image001.gif │ ├── SemRels.htm │ ├── Synan │ │ ├── SynAn_8idl-source.html │ │ ├── _2TestSynanCOM_2TestSynanCOM_8cpp-example.html │ │ ├── _2common_2COMSyntaxHolder_8cpp-example.html │ │ ├── _2common_2COMSyntaxHolder_8h-example.html │ │ ├── _2common_2util__classes_8h-example.html │ │ ├── _2common_2utilit_8cpp-example.html │ │ ├── _2common_2utilit_8h-example.html │ │ ├── annotated.html │ │ ├── classIClause-members.html │ │ ├── classIClause.html │ │ ├── classIClauseRoot-members.html │ │ ├── classIClauseRoot.html │ │ ├── classIClauseVariant-members.html │ │ ├── classIClauseVariant.html │ │ ├── classIGroup-members.html │ │ ├── classIGroup.html │ │ ├── classIHomonym-members.html │ │ ├── classIHomonym.html │ │ ├── classIRelation-members.html │ │ ├── classIRelation.html │ │ ├── classISentence-members.html │ │ ├── classISentence.html │ │ ├── classISentencesCollection-members.html │ │ ├── classISentencesCollection.html │ │ ├── classISyntaxUnit-members.html │ │ ├── classISyntaxUnit.html │ │ ├── classIWord-members.html │ │ ├── classIWord.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── examples.html │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_func.html │ │ ├── index.html │ │ ├── interfaceIRelationsIterator-members.html │ │ └── interfaceIRelationsIterator.html │ ├── aoss.html │ ├── collocs.html │ ├── concor.html │ ├── delphi_seman_test.html │ ├── engmorph.html │ ├── fragman.html │ ├── graphan.html │ ├── images │ │ ├── seman-001.gif │ │ ├── seman-002.gif │ │ ├── seman-003.gif │ │ ├── seman-004.gif │ │ ├── seman-005.gif │ │ ├── seman-006.gif │ │ ├── seman-007.gif │ │ ├── transfer-001.gif │ │ ├── transfer-002.gif │ │ ├── transfer-003.gif │ │ ├── transfer-004.gif │ │ ├── transfer-005.gif │ │ ├── transfer-006.gif │ │ ├── transfer-007.gif │ │ ├── transfer-008.gif │ │ ├── transfer-009.gif │ │ ├── transfer-010.gif │ │ ├── transfer-011.gif │ │ ├── transfer-012.gif │ │ ├── transfer-013.gif │ │ ├── transfer-014.gif │ │ ├── transfer-015.gif │ │ ├── transfer-016.gif │ │ ├── transfer-017.gif │ │ ├── transfer-018.gif │ │ ├── transfer-019.gif │ │ ├── transfer-020.gif │ │ ├── transfer-021.gif │ │ ├── transfer-022.gif │ │ ├── transfer-023.gif │ │ ├── transfer-024.gif │ │ └── transfer-025.gif │ ├── mapost.html │ ├── morph.html │ ├── morphexam_cpp.htm │ ├── morphexam_delphi.htm │ ├── morphexam_delphi1.htm │ ├── morphexam_python.htm │ ├── oborots.html │ ├── ross.html │ ├── rusmorph.html │ ├── seman.html │ ├── sokirko │ │ ├── Dialog2004-Dateien │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ └── oledata.mso │ │ ├── Dialog2004.htm │ │ ├── MorphPPT-Dateien │ │ │ ├── buttons.gif │ │ │ ├── error.htm │ │ │ ├── filelist.xml │ │ │ ├── frame.htm │ │ │ ├── fullscreen.htm │ │ │ ├── image005.gif │ │ │ ├── master01.htm │ │ │ ├── master02.htm │ │ │ ├── master06.htm │ │ │ ├── master06.xml │ │ │ ├── master06_image001.gif │ │ │ ├── master06_image002.gif │ │ │ ├── master06_image004.gif │ │ │ ├── master06_stylesheet.css │ │ │ ├── master07.htm │ │ │ ├── master07.xml │ │ │ ├── master07_image003.gif │ │ │ ├── notes_flag.gif │ │ │ ├── oledata.mso │ │ │ ├── outline.htm │ │ │ ├── pres.xml │ │ │ ├── preview.wmf │ │ │ ├── script.js │ │ │ ├── slide0001.htm │ │ │ ├── slide0002.htm │ │ │ ├── slide0003.htm │ │ │ ├── slide0005.htm │ │ │ ├── slide0006.htm │ │ │ ├── slide0006_image019.png │ │ │ ├── slide0006_image020.jpg │ │ │ ├── slide0007.htm │ │ │ ├── slide0007_image021.png │ │ │ ├── slide0007_image022.gif │ │ │ ├── slide0007_image023.gif │ │ │ ├── slide0008.htm │ │ │ ├── slide0008_image024.gif │ │ │ ├── slide0008_image025.gif │ │ │ ├── slide0009.htm │ │ │ ├── slide0009_image026.png │ │ │ ├── slide0009_image027.gif │ │ │ ├── slide0009_image028.png │ │ │ ├── slide0009_image029.jpg │ │ │ ├── slide0013.htm │ │ │ ├── slide0014.htm │ │ │ ├── slide0015.htm │ │ │ ├── slide0016.htm │ │ │ ├── slide0017.htm │ │ │ ├── slide0018.htm │ │ │ ├── slide0019.htm │ │ │ ├── slide0019_image006.gif │ │ │ ├── slide0019_image007.gif │ │ │ ├── slide0019_image008.gif │ │ │ ├── slide0019_image009.gif │ │ │ ├── slide0019_image010.gif │ │ │ ├── slide0019_image011.gif │ │ │ ├── slide0019_image012.gif │ │ │ ├── slide0020.htm │ │ │ ├── slide0020_image017.png │ │ │ ├── slide0020_image018.jpg │ │ │ ├── slide0021.htm │ │ │ ├── slide0022.htm │ │ │ ├── slide0022_image013.png │ │ │ ├── slide0022_image014.jpg │ │ │ ├── slide0023.htm │ │ │ ├── slide0023_image015.png │ │ │ └── slide0023_image016.jpg │ │ ├── MorphPPT.htm │ │ ├── dialog1998.htm │ │ ├── dialog2000-Dateien │ │ │ ├── filelist.xml │ │ │ ├── header.htm │ │ │ ├── image001.png │ │ │ ├── image002.png │ │ │ ├── image003.gif │ │ │ ├── image004.png │ │ │ ├── image005.jpg │ │ │ ├── image006.png │ │ │ ├── image007.jpg │ │ │ └── oledata.mso │ │ ├── dialog2000.htm │ │ ├── dialog2003.htm │ │ ├── images │ │ │ ├── 4-001.gif │ │ │ ├── 4-002.gif │ │ │ ├── 4-003.gif │ │ │ ├── 4-004.gif │ │ │ ├── 4-005.gif │ │ │ ├── 4-006.gif │ │ │ ├── 4-007.gif │ │ │ ├── 8-001-.gif │ │ │ ├── 8-001.gif │ │ │ ├── 8-002.gif │ │ │ ├── 8-003.gif │ │ │ ├── 8-004.gif │ │ │ ├── 8-005.gif │ │ │ ├── 8-006.gif │ │ │ ├── 8-007.gif │ │ │ ├── 8-008.gif │ │ │ ├── 8-009.gif │ │ │ ├── 8-010.gif │ │ │ ├── 8-011.gif │ │ │ ├── 8-012.gif │ │ │ ├── 8-013.gif │ │ │ ├── 8-014.gif │ │ │ ├── 8-015.gif │ │ │ ├── 8-016.gif │ │ │ ├── 8-017.gif │ │ │ ├── 8-018.gif │ │ │ ├── 8-019.gif │ │ │ ├── 8-020.gif │ │ │ ├── 8-021.gif │ │ │ ├── ENG-001.gif │ │ │ ├── ENG-002.gif │ │ │ ├── ENG-003.gif │ │ │ └── ENG-004.gif │ │ ├── kii96.htm │ │ ├── nti1997-Dateien │ │ │ ├── filelist.xml │ │ │ └── header.htm │ │ ├── nti1997.htm │ │ ├── nti2000-Dateien │ │ │ ├── filelist.xml │ │ │ └── header.htm │ │ ├── nti2000.htm │ │ ├── publ.html │ │ ├── sokirko-candid-1.html │ │ ├── sokirko-candid-2.html │ │ ├── sokirko-candid-3.html │ │ ├── sokirko-candid-4-1.html │ │ ├── sokirko-candid-4.html │ │ ├── sokirko-candid-5.html │ │ ├── sokirko-candid-6.html │ │ ├── sokirko-candid-7.html │ │ ├── sokirko-candid-8.html │ │ └── sokirko-candid-eng.html │ ├── statistics2004.htm │ ├── statistics2005.htm │ ├── statistics2006.htm │ ├── synan.html │ ├── thes.html │ ├── timeross.html │ └── transfer.html │ ├── download.html │ ├── download.php │ ├── favicon.ico │ ├── grant.html │ ├── history.html │ ├── images │ ├── pankrat_email.gif │ ├── prod-01.jpg │ ├── prod-02.jpg │ ├── prod-03.jpg │ ├── prod-04.jpg │ ├── prod-05.jpg │ ├── prod-06.jpg │ ├── tech-sch.gif │ └── transparent.gif │ ├── index.html │ ├── old_news.html │ ├── onlinedemo.html │ ├── robots.txt │ ├── search_ddc.html │ ├── technology.html │ └── vacan.html ├── Texts ├── computer.tar.gz ├── computer.txt ├── finance.tar.gz ├── finance.txt ├── freq_comp.txt ├── freq_fin.txt ├── freq_hud.txt ├── hud.lit.tar.gz └── hud.lit.txt ├── Thes ├── CMakeLists.txt ├── Comp │ ├── Ross │ │ ├── CMakeLists.txt │ │ ├── config.rcf │ │ ├── domains.json │ │ ├── domitems.tsv │ │ ├── fields.json │ │ └── ross.txt │ └── StatThes │ │ ├── Concepts.txt │ │ ├── FreqCollocTypes.txt │ │ ├── GerOborots.txt │ │ ├── Lemmas.txt │ │ ├── Relats.txt │ │ ├── RusOborots.txt │ │ ├── Synonyms.txt │ │ └── TextEntr.txt ├── Fin │ ├── Ross │ │ ├── CMakeLists.txt │ │ ├── config.rcf │ │ ├── domains.json │ │ ├── domitems.tsv │ │ ├── fields.json │ │ └── ross.txt │ └── StatThes │ │ ├── Concepts.txt │ │ ├── FreqCollocTypes.txt │ │ ├── Lemmas.txt │ │ ├── Relats.txt │ │ ├── RusOborots.txt │ │ ├── Synonyms.txt │ │ └── TextEntr.txt ├── Loc │ ├── Ross │ │ ├── CMakeLists.txt │ │ ├── config.rcf │ │ ├── domains.json │ │ ├── domitems.tsv │ │ ├── fields.json │ │ └── ross.txt │ └── StatThes │ │ ├── Concepts.txt │ │ ├── FreqCollocTypes.txt │ │ ├── GerOborots.txt │ │ ├── Lemmas.txt │ │ ├── Relats.txt │ │ ├── RusOborots.txt │ │ ├── Synonyms.txt │ │ └── TextEntr.txt └── Omni │ ├── Ross │ ├── CMakeLists.txt │ ├── config.rcf │ ├── domains.json │ ├── domitems.tsv │ ├── fields.json │ └── ross.txt │ └── StatThes │ ├── Concepts.txt │ ├── FreqCollocTypes.txt │ ├── GerOborots.txt │ ├── Lemmas.txt │ ├── Relats.txt │ ├── RusOborots.txt │ ├── Synonyms.txt │ ├── TextEntr.old │ └── TextEntr.txt ├── copying ├── readme └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bin/Lib/Graphlet/Lib/Graphscript/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/Graphlet/Lib/Graphscript/init.tcl -------------------------------------------------------------------------------- /Bin/Lib/Graphlet/Lib/Graphscript/ross/layout.tcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bin/Lib/Graphlet/Lib/graphlet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/Graphlet/Lib/graphlet.dll -------------------------------------------------------------------------------- /Bin/Lib/Graphlet/graphlet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/Graphlet/graphlet.dll -------------------------------------------------------------------------------- /Bin/Lib/tcl8.0/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tcl8.0/auto.tcl -------------------------------------------------------------------------------- /Bin/Lib/tcl8.0/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tcl8.0/init.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/bgerror.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/button.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/clrpick.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/comdlg.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/console.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/Readme -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/arrow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/arrow.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/bind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/bind.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/bitmap.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/bitmap.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/browse.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/browse.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/button.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/check.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/check.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/clrpick.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/colors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/colors.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/cscroll.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/cscroll.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/ctext.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/ctext.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/dialog1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/dialog1.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/dialog2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/dialog2.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/entry1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/entry1.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/entry2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/entry2.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/filebox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/filebox.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/floor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/floor.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/form.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/form.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/hello.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/hello.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/hscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/hscale.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/icon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/icon.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/image1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/image1.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/image2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/image2.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/earth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/earth.gif -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/earthris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/earthris.gif -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/face.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/face.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/flagdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/flagdown.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/flagup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/flagup.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/gray25.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/gray25.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/letters.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/letters.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/noletter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/noletter.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/pattern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/pattern.bmp -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/tcllogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/tcllogo.gif -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/images/teapot.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/images/teapot.ppm -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/items.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/items.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/ixset.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/ixset.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/label.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/label.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/menu.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/menubu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/menubu.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/msgbox.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/plot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/plot.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/puzzle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/puzzle.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/radio.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/radio.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/rmt.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/rmt.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/rolodex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/rolodex.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/ruler.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/ruler.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/sayings.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/sayings.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/search.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/search.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/square.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/square.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/states.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/states.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/style.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/style.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/tclIndex -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/tcolor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/tcolor.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/text.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/timer.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/timer.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/twind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/twind.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/vscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/vscale.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/demos/widget.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/demos/widget.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/dialog.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/entry.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/focus.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/listbox.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/menu.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/msgbox.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/obsolete.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/obsolete.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/optMenu.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/palette.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/safetk.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/scale.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/scrlbar.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/tearoff.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/text.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/tk.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/tk80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/tk80.dll -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/tkfbox.tcl -------------------------------------------------------------------------------- /Bin/Lib/tk8.0/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/Lib/tk8.0/xmfbox.tcl -------------------------------------------------------------------------------- /Bin/RossDev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/RossDev.ico -------------------------------------------------------------------------------- /Bin/VisualSynan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/VisualSynan.ico -------------------------------------------------------------------------------- /Bin/demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/demo.ico -------------------------------------------------------------------------------- /Bin/ger_person.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/ger_person.base -------------------------------------------------------------------------------- /Bin/ger_person.opt: -------------------------------------------------------------------------------- 1 | SyntaxCheck 2 | German 3 | -------------------------------------------------------------------------------- /Bin/ger_person.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/ger_person.txt -------------------------------------------------------------------------------- /Bin/german_synan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/german_synan.txt -------------------------------------------------------------------------------- /Bin/gersyncolloc.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/gersyncolloc.base -------------------------------------------------------------------------------- /Bin/gersyncolloc.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/gersyncolloc.opt -------------------------------------------------------------------------------- /Bin/gersyncolloc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/gersyncolloc.txt -------------------------------------------------------------------------------- /Bin/rml.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/rml.ini -------------------------------------------------------------------------------- /Bin/run_concord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/run_concord.sh -------------------------------------------------------------------------------- /Bin/run_seman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/run_seman.sh -------------------------------------------------------------------------------- /Bin/run_synan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/run_synan.sh -------------------------------------------------------------------------------- /Bin/start_aot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/start_aot.sh -------------------------------------------------------------------------------- /Bin/syncorpora.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/syncorpora.xml -------------------------------------------------------------------------------- /Bin/systemd/rml_seman.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/systemd/rml_seman.service -------------------------------------------------------------------------------- /Bin/systemd/rml_synan.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/systemd/rml_synan.service -------------------------------------------------------------------------------- /Bin/tcl80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/tcl80.dll -------------------------------------------------------------------------------- /Bin/tclpip80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/tclpip80.dll -------------------------------------------------------------------------------- /Bin/tk80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Bin/tk80.dll -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Aoss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Aoss/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/config.rcf -------------------------------------------------------------------------------- /Dicts/Aoss/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/domains.json -------------------------------------------------------------------------------- /Dicts/Aoss/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/domitems.tsv -------------------------------------------------------------------------------- /Dicts/Aoss/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/fields.json -------------------------------------------------------------------------------- /Dicts/Aoss/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Aoss/ross.txt -------------------------------------------------------------------------------- /Dicts/Bigrams/create/BuildIndex.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Bigrams/create/BuildIndex.bat -------------------------------------------------------------------------------- /Dicts/Bigrams/create/Create/unite.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Bigrams/create/Create/unite.bat -------------------------------------------------------------------------------- /Dicts/Bigrams/create/Create/unite_wf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Bigrams/create/Create/unite_wf.bat -------------------------------------------------------------------------------- /Dicts/Bigrams/create/create.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Bigrams/create/create.bat -------------------------------------------------------------------------------- /Dicts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Collocs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Collocs/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/config.rcf -------------------------------------------------------------------------------- /Dicts/Collocs/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/domains.json -------------------------------------------------------------------------------- /Dicts/Collocs/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/domitems.tsv -------------------------------------------------------------------------------- /Dicts/Collocs/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/fields.json -------------------------------------------------------------------------------- /Dicts/Collocs/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Collocs/ross.txt -------------------------------------------------------------------------------- /Dicts/EngCollocs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/EngCollocs/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/config.rcf -------------------------------------------------------------------------------- /Dicts/EngCollocs/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/domains.json -------------------------------------------------------------------------------- /Dicts/EngCollocs/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/domitems.tsv -------------------------------------------------------------------------------- /Dicts/EngCollocs/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/fields.json -------------------------------------------------------------------------------- /Dicts/EngCollocs/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngCollocs/ross.txt -------------------------------------------------------------------------------- /Dicts/EngObor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/EngObor/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/config.rcf -------------------------------------------------------------------------------- /Dicts/EngObor/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/domains.json -------------------------------------------------------------------------------- /Dicts/EngObor/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/domitems.tsv -------------------------------------------------------------------------------- /Dicts/EngObor/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/fields.json -------------------------------------------------------------------------------- /Dicts/EngObor/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/EngObor/ross.txt -------------------------------------------------------------------------------- /Dicts/GerObor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/GerObor/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/config.rcf -------------------------------------------------------------------------------- /Dicts/GerObor/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/domains.json -------------------------------------------------------------------------------- /Dicts/GerObor/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/domitems.tsv -------------------------------------------------------------------------------- /Dicts/GerObor/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/fields.json -------------------------------------------------------------------------------- /Dicts/GerObor/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerObor/ross.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/other_lists/adj_prp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/other_lists/adj_prp.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/other_lists/berufe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/other_lists/berufe.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/postmorph.grm: -------------------------------------------------------------------------------- 1 | #include "src/person.grm" 2 | -------------------------------------------------------------------------------- /Dicts/GerSynan/postmorph.opt: -------------------------------------------------------------------------------- 1 | { 2 | "EnableRootPrefix": true 3 | } -------------------------------------------------------------------------------- /Dicts/GerSynan/src/acr.txt: -------------------------------------------------------------------------------- 1 | SPD 2 | CDU -------------------------------------------------------------------------------- /Dicts/GerSynan/src/det.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/det.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/family.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/family.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/firstname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/firstname.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/geo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/geo.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/geoadj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/geoadj.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/hum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/hum.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/numbers.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/numbers.grm -------------------------------------------------------------------------------- /Dicts/GerSynan/src/param.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/param.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/person.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/person.grm -------------------------------------------------------------------------------- /Dicts/GerSynan/src/prep_akk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/prep_akk.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/prep_dat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/prep_dat.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/prep_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/prep_gen.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/src/prepositions.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/prepositions.grm -------------------------------------------------------------------------------- /Dicts/GerSynan/src/schaltwort.txt: -------------------------------------------------------------------------------- 1 | OFFENBAR -------------------------------------------------------------------------------- /Dicts/GerSynan/src/simple_syn.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/src/simple_syn.grm -------------------------------------------------------------------------------- /Dicts/GerSynan/synan.grm: -------------------------------------------------------------------------------- 1 | #include "src/simple_syn.grm" 2 | -------------------------------------------------------------------------------- /Dicts/GerSynan/synan.opt: -------------------------------------------------------------------------------- 1 | { 2 | "EnableRootPrefix": false 3 | } -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/SimpleGrammar/abbr.txt: -------------------------------------------------------------------------------- 1 | abbr -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/SimpleGrammar/example.opt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/SimpleGrammar/whoiswho.txt: -------------------------------------------------------------------------------- 1 | WhoIsWho -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/adj_prp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/unused/adj_prp.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/berufe.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/unused/berufe.morph -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/geoadj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/unused/geoadj.txt -------------------------------------------------------------------------------- /Dicts/GerSynan/unused/gformats.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GerSynan/unused/gformats.all -------------------------------------------------------------------------------- /Dicts/GraphAn/abbr.eng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/abbr.eng -------------------------------------------------------------------------------- /Dicts/GraphAn/abbr.ger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/abbr.ger -------------------------------------------------------------------------------- /Dicts/GraphAn/abbr.rus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/abbr.rus -------------------------------------------------------------------------------- /Dicts/GraphAn/enames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/enames.txt -------------------------------------------------------------------------------- /Dicts/GraphAn/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/extensions.txt -------------------------------------------------------------------------------- /Dicts/GraphAn/idents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/idents.txt -------------------------------------------------------------------------------- /Dicts/GraphAn/keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/keyboard.txt -------------------------------------------------------------------------------- /Dicts/GraphAn/keyword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/keyword -------------------------------------------------------------------------------- /Dicts/GraphAn/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/ross.txt -------------------------------------------------------------------------------- /Dicts/GraphAn/space.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/GraphAn/space.dic -------------------------------------------------------------------------------- /Dicts/Obor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Obor/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/config.rcf -------------------------------------------------------------------------------- /Dicts/Obor/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/domains.json -------------------------------------------------------------------------------- /Dicts/Obor/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/domitems.tsv -------------------------------------------------------------------------------- /Dicts/Obor/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/fields.json -------------------------------------------------------------------------------- /Dicts/Obor/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Obor/ross.txt -------------------------------------------------------------------------------- /Dicts/Ross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Ross/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/config.rcf -------------------------------------------------------------------------------- /Dicts/Ross/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/domains.json -------------------------------------------------------------------------------- /Dicts/Ross/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/domitems.tsv -------------------------------------------------------------------------------- /Dicts/Ross/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/fields.json -------------------------------------------------------------------------------- /Dicts/Ross/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Ross/ross.txt -------------------------------------------------------------------------------- /Dicts/RusSynan/adj_group.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/RusSynan/adj_group.grm -------------------------------------------------------------------------------- /Dicts/RusSynan/adj_noun.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/RusSynan/adj_noun.grm -------------------------------------------------------------------------------- /Dicts/RusSynan/compile.bat: -------------------------------------------------------------------------------- 1 | SimpleGrammarPrecompiled German rformats.grm -------------------------------------------------------------------------------- /Dicts/RusSynan/gformats.opt: -------------------------------------------------------------------------------- 1 | DisableRootPrefix -------------------------------------------------------------------------------- /Dicts/RusSynan/rformats.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/RusSynan/rformats.grm -------------------------------------------------------------------------------- /Dicts/RusSynan/vssver.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/RusSynan/vssver.scc -------------------------------------------------------------------------------- /Dicts/SrcBinDict/ASP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/ASP.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/all.eng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/all.eng -------------------------------------------------------------------------------- /Dicts/SrcBinDict/create_good_freq.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/create_good_freq.bat -------------------------------------------------------------------------------- /Dicts/SrcBinDict/dict2809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/dict2809.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/dict_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/dict_labels.json -------------------------------------------------------------------------------- /Dicts/SrcBinDict/input.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/input.lem -------------------------------------------------------------------------------- /Dicts/SrcBinDict/russup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/russup.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/shira.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/shira.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/stopwords.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/synonyms.txt -------------------------------------------------------------------------------- /Dicts/SrcBinDict/to_put: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/to_put -------------------------------------------------------------------------------- /Dicts/SrcBinDict/troiki_pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/troiki_pre -------------------------------------------------------------------------------- /Dicts/SrcBinDict/troiki_pref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/troiki_pref -------------------------------------------------------------------------------- /Dicts/SrcBinDict/troiki_suff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/troiki_suff -------------------------------------------------------------------------------- /Dicts/SrcBinDict/update_rus_hom_freq.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/update_rus_hom_freq.bat -------------------------------------------------------------------------------- /Dicts/SrcBinDict/wt.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SrcBinDict/wt.link -------------------------------------------------------------------------------- /Dicts/SynAn/adv_adj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/adv_adj.txt -------------------------------------------------------------------------------- /Dicts/SynAn/comp_adv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/comp_adv.dat -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_acc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/dct_prep_acc.txt -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_dat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/dct_prep_dat.txt -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/dct_prep_gen.txt -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_instr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/dct_prep_instr.txt -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_nom.txt: -------------------------------------------------------------------------------- 1 | в 2 | по 3 | на 4 | -------------------------------------------------------------------------------- /Dicts/SynAn/dct_prep_prep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/dct_prep_prep.txt -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.automat: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/gformats.bak -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.grammar_precompiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/gformats.grammar_precompiled -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.opt: -------------------------------------------------------------------------------- 1 | DisableRootPrefix 2 | -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/gformats.table -------------------------------------------------------------------------------- /Dicts/SynAn/gformats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/gformats.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_adjectivephrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_adjectivephrases.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_adverbphrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_adverbphrases.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_conjunctions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dicts/SynAn/grm_nounphrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_nounphrases.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_numerals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_numerals.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_other.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_prepositionphrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_prepositionphrases.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_terminals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_terminals.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_test.txt -------------------------------------------------------------------------------- /Dicts/SynAn/grm_verbphrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/grm_verbphrases.txt -------------------------------------------------------------------------------- /Dicts/SynAn/instr_obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/instr_obj.txt -------------------------------------------------------------------------------- /Dicts/SynAn/mapost_collocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/mapost_collocs.txt -------------------------------------------------------------------------------- /Dicts/SynAn/noun_num.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/noun_num.dat -------------------------------------------------------------------------------- /Dicts/SynAn/num_pr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/num_pr.dat -------------------------------------------------------------------------------- /Dicts/SynAn/profes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/profes.txt -------------------------------------------------------------------------------- /Dicts/SynAn/razr_conj.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/razr_conj.grm -------------------------------------------------------------------------------- /Dicts/SynAn/verbs_with_inf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/SynAn/verbs_with_inf.txt -------------------------------------------------------------------------------- /Dicts/TimeRoss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/TimeRoss/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/config.rcf -------------------------------------------------------------------------------- /Dicts/TimeRoss/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/domains.json -------------------------------------------------------------------------------- /Dicts/TimeRoss/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/domitems.tsv -------------------------------------------------------------------------------- /Dicts/TimeRoss/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/fields.json -------------------------------------------------------------------------------- /Dicts/TimeRoss/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/TimeRoss/ross.txt -------------------------------------------------------------------------------- /Dicts/Trigram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/CMakeLists.txt -------------------------------------------------------------------------------- /Dicts/Trigram/check.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/check.bat -------------------------------------------------------------------------------- /Dicts/Trigram/convert_to_bin.bat: -------------------------------------------------------------------------------- 1 | ConvertTrigramBinary default.config -------------------------------------------------------------------------------- /Dicts/Trigram/debug_viterbi.sh: -------------------------------------------------------------------------------- 1 | export DEBUG_VITERBI=yes 2 | Trigram testing default.config t.txt -------------------------------------------------------------------------------- /Dicts/Trigram/default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/default.config -------------------------------------------------------------------------------- /Dicts/Trigram/default.tagset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/default.tagset -------------------------------------------------------------------------------- /Dicts/Trigram/default/base.lex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/default/base.lex.gz -------------------------------------------------------------------------------- /Dicts/Trigram/default/base.ngram.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/default/base.ngram.gz -------------------------------------------------------------------------------- /Dicts/Trigram/full.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/full.config -------------------------------------------------------------------------------- /Dicts/Trigram/full.rev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/full.rev.config -------------------------------------------------------------------------------- /Dicts/Trigram/full.rev/base.lex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/full.rev/base.lex.gz -------------------------------------------------------------------------------- /Dicts/Trigram/full.rev/base.ngram.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/full.rev/base.ngram.gz -------------------------------------------------------------------------------- /Dicts/Trigram/full.tagset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/full.tagset -------------------------------------------------------------------------------- /Dicts/Trigram/result.bucketing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/result.bucketing -------------------------------------------------------------------------------- /Dicts/Trigram/ruscorp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/ruscorp.config -------------------------------------------------------------------------------- /Dicts/Trigram/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Dicts/Trigram/test.bat -------------------------------------------------------------------------------- /Docs/AgramtabInterfaceRus.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/AgramtabInterfaceRus.doc -------------------------------------------------------------------------------- /Docs/MorphWizard.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/MorphWizard.rtf -------------------------------------------------------------------------------- /Docs/Morph_UNIX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/Morph_UNIX.txt -------------------------------------------------------------------------------- /Docs/RusSyntax.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/RusSyntax.doc -------------------------------------------------------------------------------- /Docs/SemanInterfaceRus.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/SemanInterfaceRus.doc -------------------------------------------------------------------------------- /Docs/TimeRoss.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/TimeRoss.doc -------------------------------------------------------------------------------- /Docs/java-jni-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Docs/java-jni-readme.txt -------------------------------------------------------------------------------- /Logs/.place_holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/common/BigramsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/BigramsReader.h -------------------------------------------------------------------------------- /Source/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/CMakeLists.txt -------------------------------------------------------------------------------- /Source/common/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/Chunk.h -------------------------------------------------------------------------------- /Source/common/cortege.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/cortege.cpp -------------------------------------------------------------------------------- /Source/common/cortege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/cortege.h -------------------------------------------------------------------------------- /Source/common/gra_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/gra_descr.cpp -------------------------------------------------------------------------------- /Source/common/gra_descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/gra_descr.h -------------------------------------------------------------------------------- /Source/common/http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/http_server.cpp -------------------------------------------------------------------------------- /Source/common/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/http_server.h -------------------------------------------------------------------------------- /Source/common/test_corpus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/test_corpus.cpp -------------------------------------------------------------------------------- /Source/common/test_corpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/common/test_corpus.h -------------------------------------------------------------------------------- /Source/dicts/AprDictGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/AprDictGen/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/AprDictGen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/AprDictGen/main.cpp -------------------------------------------------------------------------------- /Source/dicts/Bigrams/BigramsReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/Bigrams/BigramsReader.cpp -------------------------------------------------------------------------------- /Source/dicts/Bigrams/BigramsReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/Bigrams/BigramsReader.h -------------------------------------------------------------------------------- /Source/dicts/Bigrams/BigramsTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/Bigrams/BigramsTest/main.cpp -------------------------------------------------------------------------------- /Source/dicts/Bigrams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/Bigrams/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/Bigrams/Text2Bigrams/tests/a1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 5 4 | -------------------------------------------------------------------------------- /Source/dicts/Bigrams/Text2Bigrams/tests/a2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | -------------------------------------------------------------------------------- /Source/dicts/Bigrams/Text2Bigrams/tests/a3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/dicts/Bigrams/test_data/file.con: -------------------------------------------------------------------------------- 1 | english_text.txt -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsClient/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsClient/Main.cpp -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/AspPairDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/AspPairDict.h -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/DerivDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/DerivDict.cpp -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/DerivDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/DerivDict.h -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/FreqDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/FreqDict.cpp -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/FreqDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/FreqDict.h -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/stdafx.cpp -------------------------------------------------------------------------------- /Source/dicts/BinaryDictsLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/BinaryDictsLib/stdafx.h -------------------------------------------------------------------------------- /Source/dicts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/GenFreqDict/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/GenFreqDict/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/GenFreqDict/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/GenFreqDict/main.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Concepts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Concepts.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Models.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Models.h -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Relats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Relats.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/RmlThesConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/RmlThesConsts.h -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/StdRmlThes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/StdRmlThes.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/StdRmlThes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/StdRmlThes.h -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Synonyms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Synonyms.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Termins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Termins.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/ThesOborots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/ThesOborots.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Thesaurus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Thesaurus.cpp -------------------------------------------------------------------------------- /Source/dicts/RmlThesLib/Thesaurus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/RmlThesLib/Thesaurus.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/DictConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/DictConfig.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/DictConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/DictConfig.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Domen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Domen.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Domen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Domen.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Field.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Field.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Ross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Ross.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Ross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Ross.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Signat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Signat.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/Signat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/Signat.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/StdRoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/StdRoss.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/StdRoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/StdRoss.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/StructEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/StructEntry.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/StructEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/StructEntry.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/TempArticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/TempArticle.cpp -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/TempArticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/TempArticle.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLib/TextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLib/TextField.h -------------------------------------------------------------------------------- /Source/dicts/StructDictLoader/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/StructDictLoader/Main.cpp -------------------------------------------------------------------------------- /Source/dicts/asp_read/AspTest/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/asp_read/AspTest/Main.cpp -------------------------------------------------------------------------------- /Source/dicts/asp_read/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/asp_read/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/asp_read/asp_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/asp_read/asp_read.cpp -------------------------------------------------------------------------------- /Source/dicts/deriv_read/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/deriv_read/CMakeLists.txt -------------------------------------------------------------------------------- /Source/dicts/deriv_read/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/dicts/deriv_read/main.cpp -------------------------------------------------------------------------------- /Source/graphan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/CMakeLists.txt -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/C_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/C_desc.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Consent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Consent.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Consent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Consent.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Cs_hiera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Cs_hiera.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/GraphanDicts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/GraphanDicts.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/GraphanDicts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/GraphanDicts.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/GraphmatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/GraphmatFile.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/GraphmatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/GraphmatFile.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/HTMLConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/HTMLConv.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/HtmlConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/HtmlConv.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Oborots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Oborots.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Sentences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Sentences.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/StdAfx.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/StdGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/StdGraph.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/UnitHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/UnitHolder.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/UnitHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/UnitHolder.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/Writegra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/Writegra.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/abbrev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/abbrev.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/abbrev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/abbrev.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/graline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/graline.cpp -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/graline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/graline.h -------------------------------------------------------------------------------- /Source/graphan/GraphanLib/graphan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/graphan/GraphanLib/graphan.html -------------------------------------------------------------------------------- /Source/morphan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/CMakeLists.txt -------------------------------------------------------------------------------- /Source/morphan/FileLem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/FileLem/CMakeLists.txt -------------------------------------------------------------------------------- /Source/morphan/FileLem/FileLem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/FileLem/FileLem.cpp -------------------------------------------------------------------------------- /Source/morphan/LemmatizerLib/Homonym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/LemmatizerLib/Homonym.cpp -------------------------------------------------------------------------------- /Source/morphan/LemmatizerLib/Homonym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/LemmatizerLib/Homonym.h -------------------------------------------------------------------------------- /Source/morphan/LemmatizerLib/LemWord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/LemmatizerLib/LemWord.cpp -------------------------------------------------------------------------------- /Source/morphan/LemmatizerLib/LemWord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/morphan/LemmatizerLib/LemWord.h -------------------------------------------------------------------------------- /Source/seman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/CMakeLists.txt -------------------------------------------------------------------------------- /Source/seman/SemanLib/AllRossesHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/AllRossesHolder.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/AllRossesHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/AllRossesHolder.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/seman/SemanLib/DictUnitInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/DictUnitInterp.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/DictUnitInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/DictUnitInterp.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/GenerateNewForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/GenerateNewForm.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/HierarchyHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/HierarchyHolder.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/HierarchyHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/HierarchyHolder.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/LexFuncts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/LexFuncts.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/RussianSynthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/RussianSynthesis.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemPattern.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemPattern.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanHypotGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanHypotGraph.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanPattern.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticClause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticClause.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticColloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticColloc.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticCommon.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticCompar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticCompar.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticGraph.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticIdealize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticIdealize.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticLength.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticLoc.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticMNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticMNA.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticNumeral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticNumeral.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticStrAn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticStrAn.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticStructure.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticTree.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticWeight.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticWeight.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticsHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticsHolder.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/SemanticsHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/SemanticsHolder.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/TranslatorHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/TranslatorHolder.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/TranslatorHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/TranslatorHolder.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/Valency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/Valency.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/Valency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/Valency.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/VisualGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/VisualGraph.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/VisualGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/VisualGraph.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/analytical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/analytical.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/answers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/answers.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/dict_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/dict_type.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/dict_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/dict_type.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/fem_deriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/fem_deriv.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/lex_variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/lex_variant.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/rus_sem_relation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/rus_sem_relation.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/rus_sem_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/rus_sem_word.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/rus_sem_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/rus_sem_word.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_options.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_options.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_relation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_relation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_relation.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_tcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_tcl.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_word.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/sem_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/sem_word.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/stdafx.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/stdafx.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/syn_realization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/syn_realization.h -------------------------------------------------------------------------------- /Source/seman/SemanLib/time_phrases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/time_phrases.cpp -------------------------------------------------------------------------------- /Source/seman/SemanLib/time_phrases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/SemanLib/time_phrases.h -------------------------------------------------------------------------------- /Source/seman/TestSeman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/TestSeman/CMakeLists.txt -------------------------------------------------------------------------------- /Source/seman/TestSeman/TestSeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/TestSeman/TestSeman.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/CMakeLists.txt -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAdverbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAdverbs.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAlg_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAlg_1.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAlg_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAlg_2.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAlg_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAlg_3.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAlg_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAlg_4.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAlg_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAlg_5.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngArticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngArticle.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngAtomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngAtomic.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngEquivs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngEquivs.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngHelper.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngInterp.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngNodeCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngNodeCreate.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngNoun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngNoun.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngPrep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngPrep.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngPrimitives.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngPrimitives.h -------------------------------------------------------------------------------- /Source/seman/Transfer/EngSemStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngSemStructure.h -------------------------------------------------------------------------------- /Source/seman/Transfer/EngSynthes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngSynthes.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngSynthes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngSynthes.h -------------------------------------------------------------------------------- /Source/seman/Transfer/EngVerbTense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngVerbTense.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/EngVerbTense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/EngVerbTense.h -------------------------------------------------------------------------------- /Source/seman/Transfer/NodeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/NodeHelper.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/StdAfx.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/StdAfx.h -------------------------------------------------------------------------------- /Source/seman/Transfer/TransPrepNoun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/TransPrepNoun.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/TransRels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/TransRels.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/TransRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/TransRules.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/TransTense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/TransTense.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/TranseClause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/TranseClause.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/eng_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/eng_word.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/eng_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/eng_word.h -------------------------------------------------------------------------------- /Source/seman/Transfer/numerals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/numerals.cpp -------------------------------------------------------------------------------- /Source/seman/Transfer/numerals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/numerals.h -------------------------------------------------------------------------------- /Source/seman/Transfer/verb_tense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/seman/Transfer/verb_tense.h -------------------------------------------------------------------------------- /Source/synan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/EngOborDic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/EngOborDic.cpp -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/EngOborDic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/EngOborDic.h -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/EngSentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/EngSentence.h -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/EngSyntaxOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/EngSyntaxOpt.h -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/StdAfx.h -------------------------------------------------------------------------------- /Source/synan/EngSynanLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/EngSynanLib/stdafx.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/Additions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/Additions.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/AdjNomen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/AdjNomen.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/Adjektiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/Adjektiv.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/Familien.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/Familien.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GLRFormats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GLRFormats.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GenitNP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GenitNP.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerClause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerClause.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerClause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerClause.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerGeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerGeo.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerGroup.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerGroup.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerOborot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerOborot.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerOborot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerOborot.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerSentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerSentence.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerSubject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerSubject.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerSynan.cpp: -------------------------------------------------------------------------------- 1 | #pragma warning (disable : 4786) 2 | 3 | 4 | #include "GerSynan.h" 5 | -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerSynan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerSynan.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerSyntaxOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerSyntaxOpt.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerThesaurus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerThesaurus.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerWord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerWord.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/GerWord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/GerWord.h -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/Numeralia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/Numeralia.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/SimilarNP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/SimilarNP.cpp -------------------------------------------------------------------------------- /Source/synan/GerSynanLib/Verb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/GerSynanLib/Verb.cpp -------------------------------------------------------------------------------- /Source/synan/MAPostLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/MAPostLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/MAPostLib/Fio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/MAPostLib/Fio.cpp -------------------------------------------------------------------------------- /Source/synan/MAPostLib/MAPostInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/MAPostLib/MAPostInit.cpp -------------------------------------------------------------------------------- /Source/synan/MAPostLib/MAPostMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/MAPostLib/MAPostMain.cpp -------------------------------------------------------------------------------- /Source/synan/MAPostLib/MAPostMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/MAPostLib/MAPostMain.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/BaseRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/BaseRules.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/FragCoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/FragCoord.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/NSO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/NSO.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusClause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusClause.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusClause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusClause.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusGroup.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusGroup.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusOborot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusOborot.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusOborot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusOborot.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusPlmLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusPlmLine.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusPlmLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusPlmLine.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusSentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusSentence.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusSyntaxOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusSyntaxOpt.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusThesaurus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusThesaurus.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusWord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusWord.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/RusWord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/RusWord.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/StdSynan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/StdSynan.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/StdSynan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/StdSynan.h -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/SynanDash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/SynanDash.cpp -------------------------------------------------------------------------------- /Source/synan/RusSynanLib/groups/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/RusSynanLib/groups/rules.h -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/GLR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SimpleGrammarLib/GLR.cpp -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/GLR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SimpleGrammarLib/GLR.h -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/SimpleGrammarLib.cpp: -------------------------------------------------------------------------------- 1 | #pragma warning (disable : 4267) 2 | #include "SimpleGrammarLib.h" -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/chunker.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SimpleGrammarLib/chunker.l -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/chunker.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SimpleGrammarLib/chunker.y -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/my_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SimpleGrammarLib/my_stl.h -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/tests/data/01.basic/subfolder/inc.grm: -------------------------------------------------------------------------------- 1 | [NOUN] -> [TOKEN filename="noun.txt"]; 2 | 3 | -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/tests/data/01.basic/subfolder/noun.txt: -------------------------------------------------------------------------------- 1 | BILD 2 | 3 | -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/tests/data/04.coordination/test.grm: -------------------------------------------------------------------------------- 1 | #include "inc.grm" 2 | [main] -> [n1 root]; 3 | -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/tests/data/05.predicted/test.opt: -------------------------------------------------------------------------------- 1 | { 2 | "EnableRootPrefix": false 3 | } 4 | -------------------------------------------------------------------------------- /Source/synan/SimpleGrammarLib/tests/data/06.numbers/test.opt: -------------------------------------------------------------------------------- 1 | { 2 | "EnableRootPrefix": false 3 | } 4 | -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Clause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Clause.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Clause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Clause.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Group.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Group.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/LemmaList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/LemmaList.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/LemmaList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/LemmaList.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Period.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Period.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Sentence.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Sentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Sentence.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/SynHomonym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/SynHomonym.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/SynPlmLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/SynPlmLine.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/SyntaxInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/SyntaxInit.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Word.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/Word.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/oborot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/oborot.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/oborot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/oborot.h -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/stdafx.cpp -------------------------------------------------------------------------------- /Source/synan/SynCommonLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynCommonLib/stdafx.h -------------------------------------------------------------------------------- /Source/synan/SynanLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynanLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/SynanLib/SyntaxHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynanLib/SyntaxHolder.cpp -------------------------------------------------------------------------------- /Source/synan/SynanLib/SyntaxHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/SynanLib/SyntaxHolder.h -------------------------------------------------------------------------------- /Source/synan/TestMapost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/TestMapost/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/TestMapost/TestMapost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/TestMapost/TestMapost.cpp -------------------------------------------------------------------------------- /Source/synan/TestMapost/test/Russian/fixed_collocs.txt.mapost: -------------------------------------------------------------------------------- 1 | кто 1 3 RLE aa SENT_END + КТО? МС мр,им,ед, 2 | -------------------------------------------------------------------------------- /Source/synan/TestSynan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/TestSynan/CMakeLists.txt -------------------------------------------------------------------------------- /Source/synan/TestSynan/TestSynan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/synan/TestSynan/TestSynan.cpp -------------------------------------------------------------------------------- /Source/synan/TestSynan/test/thes/data/StatThes/Relats.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/CMakeLists.txt -------------------------------------------------------------------------------- /Source/windows/Demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/CMakeLists.txt -------------------------------------------------------------------------------- /Source/windows/Demo/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/Splash.cpp -------------------------------------------------------------------------------- /Source/windows/Demo/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/Splash.h -------------------------------------------------------------------------------- /Source/windows/Demo/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/StdAfx.cpp -------------------------------------------------------------------------------- /Source/windows/Demo/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/StdAfx.h -------------------------------------------------------------------------------- /Source/windows/Demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/demo.cpp -------------------------------------------------------------------------------- /Source/windows/Demo/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/demo.h -------------------------------------------------------------------------------- /Source/windows/Demo/demo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/demo.rc -------------------------------------------------------------------------------- /Source/windows/Demo/demoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/demoDlg.cpp -------------------------------------------------------------------------------- /Source/windows/Demo/demoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/demoDlg.h -------------------------------------------------------------------------------- /Source/windows/Demo/res/Book01a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/Book01a.ico -------------------------------------------------------------------------------- /Source/windows/Demo/res/Book04.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/Book04.ico -------------------------------------------------------------------------------- /Source/windows/Demo/res/Splsh16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/Splsh16.bmp -------------------------------------------------------------------------------- /Source/windows/Demo/res/demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/demo.ico -------------------------------------------------------------------------------- /Source/windows/Demo/res/demo.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/demo.rc2 -------------------------------------------------------------------------------- /Source/windows/Demo/res/morf1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/res/morf1.BMP -------------------------------------------------------------------------------- /Source/windows/Demo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Demo/resource.h -------------------------------------------------------------------------------- /Source/windows/FindIDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/FindIDL.cmake -------------------------------------------------------------------------------- /Source/windows/Lemmatizer/ComParadigm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Lemmatizer/ComParadigm.h -------------------------------------------------------------------------------- /Source/windows/Lemmatizer/Lemmatizer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Lemmatizer/Lemmatizer.rc -------------------------------------------------------------------------------- /Source/windows/Lemmatizer/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Lemmatizer/StdAfx.cpp -------------------------------------------------------------------------------- /Source/windows/Lemmatizer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Lemmatizer/StdAfx.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/ChildFrm.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/ChildFrm.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/DlgDelAnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/DlgDelAnc.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/DlgLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/DlgLogin.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/DlgLogin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/DlgLogin.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/GriIni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/GriIni.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/GriIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/GriIni.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/HELPIDS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/HELPIDS.H -------------------------------------------------------------------------------- /Source/windows/Morphwizard/InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/InputBox.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/InputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/InputBox.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/MDITabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/MDITabs.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/MDITabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/MDITabs.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/MWDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/MWDocument.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/MainFrm.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/MainFrm.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/ReadMe.txt -------------------------------------------------------------------------------- /Source/windows/Morphwizard/SLFView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/SLFView.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/SLFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/SLFView.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/resource.h -------------------------------------------------------------------------------- /Source/windows/Morphwizard/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/stdafx.cpp -------------------------------------------------------------------------------- /Source/windows/Morphwizard/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/Morphwizard/stdafx.h -------------------------------------------------------------------------------- /Source/windows/RossDev/ArticleDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ArticleDoc.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ArticleDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ArticleDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/ArticleView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ArticleView.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ArticleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ArticleView.h -------------------------------------------------------------------------------- /Source/windows/RossDev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/CMakeLists.txt -------------------------------------------------------------------------------- /Source/windows/RossDev/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ChildFrm.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ChildFrm.h -------------------------------------------------------------------------------- /Source/windows/RossDev/CntrItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/CntrItem.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/CntrItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/CntrItem.h -------------------------------------------------------------------------------- /Source/windows/RossDev/FieldList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FieldList.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/FieldList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FieldList.h -------------------------------------------------------------------------------- /Source/windows/RossDev/FindByStrDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FindByStrDlg.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/FindByStrDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FindByStrDlg.h -------------------------------------------------------------------------------- /Source/windows/RossDev/FindWrongRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FindWrongRefs.h -------------------------------------------------------------------------------- /Source/windows/RossDev/FldScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FldScroll.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/FldScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/FldScroll.h -------------------------------------------------------------------------------- /Source/windows/RossDev/Hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Hierarchy.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/Hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Hierarchy.h -------------------------------------------------------------------------------- /Source/windows/RossDev/HierarchyDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/HierarchyDoc.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/HierarchyDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/HierarchyDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/InputBox.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/InputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/InputBox.h -------------------------------------------------------------------------------- /Source/windows/RossDev/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/MainFrm.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/MainFrm.h -------------------------------------------------------------------------------- /Source/windows/RossDev/NewRefArticles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/NewRefArticles.h -------------------------------------------------------------------------------- /Source/windows/RossDev/NewTextEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/NewTextEntry.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/NewTextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/NewTextEntry.h -------------------------------------------------------------------------------- /Source/windows/RossDev/OXResizeGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/OXResizeGadget.h -------------------------------------------------------------------------------- /Source/windows/RossDev/PocketDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PocketDoc.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/PocketDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PocketDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/PocketForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PocketForm.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/PocketForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PocketForm.h -------------------------------------------------------------------------------- /Source/windows/RossDev/PosChoicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PosChoicer.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/PosChoicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/PosChoicer.h -------------------------------------------------------------------------------- /Source/windows/RossDev/ProgressForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ProgressForm.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ProgressForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ProgressForm.h -------------------------------------------------------------------------------- /Source/windows/RossDev/ReportDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ReportDoc.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ReportDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ReportDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/ReportView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ReportView.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/ReportView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/ReportView.h -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDev.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDev.h -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDev.rc -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDev.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDev.rgs -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDoc.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/RossDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/RossDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/SemanticStrDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/SemanticStrDoc.h -------------------------------------------------------------------------------- /Source/windows/RossDev/SizeFormView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/SizeFormView.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/SizeFormView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/SizeFormView.h -------------------------------------------------------------------------------- /Source/windows/RossDev/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Splash.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Splash.h -------------------------------------------------------------------------------- /Source/windows/RossDev/Splsh16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Splsh16.bmp -------------------------------------------------------------------------------- /Source/windows/RossDev/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/StdAfx.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/StdAfx.h -------------------------------------------------------------------------------- /Source/windows/RossDev/TckTkWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/TckTkWrapper.h -------------------------------------------------------------------------------- /Source/windows/RossDev/Translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Translations.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/Translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/Translations.h -------------------------------------------------------------------------------- /Source/windows/RossDev/WordList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/WordList.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/WordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/WordList.h -------------------------------------------------------------------------------- /Source/windows/RossDev/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/font.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/font.h -------------------------------------------------------------------------------- /Source/windows/RossDev/picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/picture.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/picture.h -------------------------------------------------------------------------------- /Source/windows/RossDev/res/RossDev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/RossDev.ico -------------------------------------------------------------------------------- /Source/windows/RossDev/res/RossDev.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/RossDev.rc2 -------------------------------------------------------------------------------- /Source/windows/RossDev/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/Toolbar.bmp -------------------------------------------------------------------------------- /Source/windows/RossDev/res/emptytoo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/emptytoo.bmp -------------------------------------------------------------------------------- /Source/windows/RossDev/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/icon1.ico -------------------------------------------------------------------------------- /Source/windows/RossDev/res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/res/toolbar1.bmp -------------------------------------------------------------------------------- /Source/windows/RossDev/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/resource.h -------------------------------------------------------------------------------- /Source/windows/RossDev/rowcursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/rowcursor.cpp -------------------------------------------------------------------------------- /Source/windows/RossDev/rowcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/RossDev/rowcursor.h -------------------------------------------------------------------------------- /Source/windows/TestLemmatizerCOM/test/Russian/text.txt: -------------------------------------------------------------------------------- 1 | Я 2 | это 3 | знаю 4 | mother -------------------------------------------------------------------------------- /Source/windows/VisualSynan/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/ChildFrm.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/ChildFrm.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/DlgHom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/DlgHom.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/DlgHom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/DlgHom.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/MainFrm.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/MainFrm.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/ReportDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/ReportDoc.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Res/Wait.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Res/Wait.avi -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Resource.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Splash.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Splash.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Splsh16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Splsh16.bmp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/StdAfx.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/StdAfx.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/SynReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/SynReport.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/THREAD.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/THREAD.CPP -------------------------------------------------------------------------------- /Source/windows/VisualSynan/THREAD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/THREAD.H -------------------------------------------------------------------------------- /Source/windows/VisualSynan/Wait.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/Wait.avi -------------------------------------------------------------------------------- /Source/windows/VisualSynan/WaitDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/WaitDlg.cpp -------------------------------------------------------------------------------- /Source/windows/VisualSynan/WaitDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/WaitDlg.h -------------------------------------------------------------------------------- /Source/windows/VisualSynan/WaitThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/VisualSynan/WaitThread.h -------------------------------------------------------------------------------- /Source/windows/tcl_source/tcl80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tcl_source/tcl80.dll -------------------------------------------------------------------------------- /Source/windows/tcl_source/tcl80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tcl_source/tcl80.lib -------------------------------------------------------------------------------- /Source/windows/tcl_source/tclpip80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tcl_source/tclpip80.dll -------------------------------------------------------------------------------- /Source/windows/tcl_source/tclreg80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tcl_source/tclreg80.dll -------------------------------------------------------------------------------- /Source/windows/tcl_source/tclreg80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tcl_source/tclreg80.lib -------------------------------------------------------------------------------- /Source/windows/tk_source/tk80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tk_source/tk80.dll -------------------------------------------------------------------------------- /Source/windows/tk_source/tk80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/windows/tk_source/tk80.lib -------------------------------------------------------------------------------- /Source/www/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/CMakeLists.txt -------------------------------------------------------------------------------- /Source/www/FindLibevent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/FindLibevent.cmake -------------------------------------------------------------------------------- /Source/www/JNIMorphAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/JNIMorphAPI/CMakeLists.txt -------------------------------------------------------------------------------- /Source/www/JNIMorphAPI/JNIMorphAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/JNIMorphAPI/JNIMorphAPI.cpp -------------------------------------------------------------------------------- /Source/www/JNIMorphAPI/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/JNIMorphAPI/build.sh -------------------------------------------------------------------------------- /Source/www/SemanDaemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SemanDaemon/CMakeLists.txt -------------------------------------------------------------------------------- /Source/www/SemanDaemon/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SemanDaemon/Main.cpp -------------------------------------------------------------------------------- /Source/www/SemanDaemon/translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SemanDaemon/translate.cpp -------------------------------------------------------------------------------- /Source/www/SemanDaemon/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SemanDaemon/translate.h -------------------------------------------------------------------------------- /Source/www/SynanDaemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SynanDaemon/CMakeLists.txt -------------------------------------------------------------------------------- /Source/www/SynanDaemon/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SynanDaemon/Main.cpp -------------------------------------------------------------------------------- /Source/www/SynanDaemon/SynanDmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SynanDaemon/SynanDmn.cpp -------------------------------------------------------------------------------- /Source/www/SynanDaemon/SynanDmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SynanDaemon/SynanDmn.h -------------------------------------------------------------------------------- /Source/www/SynanDaemonAWS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/SynanDaemonAWS/main.cpp -------------------------------------------------------------------------------- /Source/www/cgi-bin/ddc_search_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/cgi-bin/ddc_search_cgi.py -------------------------------------------------------------------------------- /Source/www/cgi-bin/forum/forum.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/cgi-bin/forum/forum.cgi -------------------------------------------------------------------------------- /Source/www/cgi-bin/forum/forum.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/cgi-bin/forum/forum.tar.gz -------------------------------------------------------------------------------- /Source/www/nginx/00-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/nginx/00-default -------------------------------------------------------------------------------- /Source/www/nginx/aot.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/nginx/aot.ru -------------------------------------------------------------------------------- /Source/www/wwwroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/.htaccess -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/chapter1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/chapter1.pdf -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/chapter2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/chapter2.pdf -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/chapter3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/chapter3.pdf -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/chapter4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/chapter4.pdf -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/index.html -------------------------------------------------------------------------------- /Source/www/wwwroot/Nozhov/msot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/Nozhov/msot.pdf -------------------------------------------------------------------------------- /Source/www/wwwroot/aot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/aot.css -------------------------------------------------------------------------------- /Source/www/wwwroot/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/authors.html -------------------------------------------------------------------------------- /Source/www/wwwroot/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/close.html -------------------------------------------------------------------------------- /Source/www/wwwroot/concor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/concor.html -------------------------------------------------------------------------------- /Source/www/wwwroot/corp2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/corp2.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/bigrams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/bigrams.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/bigrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/bigrams.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/common.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/graph.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/libs/joint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/libs/joint.css -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/libs/joint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/libs/joint.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/libs/jquery.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/libs/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/libs/lodash.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/morph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/morph.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/morph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/morph.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/morph_links.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/morph_links.htm -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/seman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/seman.css -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/seman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/seman.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/synan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/synan.css -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/synan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/synan.js -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/synt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/synt.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/translat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/translat.html -------------------------------------------------------------------------------- /Source/www/wwwroot/demo/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/demo/translate.js -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/Dialog_text.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/Dialog_text.htm -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/SemRels.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/SemRels.htm -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/aoss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/aoss.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/collocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/collocs.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/concor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/concor.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/engmorph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/engmorph.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/fragman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/fragman.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/graphan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/graphan.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/mapost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/mapost.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/morph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/morph.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/oborots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/oborots.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/ross.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/ross.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/rusmorph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/rusmorph.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/seman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/seman.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/synan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/synan.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/thes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/thes.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/timeross.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/timeross.html -------------------------------------------------------------------------------- /Source/www/wwwroot/docs/transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/docs/transfer.html -------------------------------------------------------------------------------- /Source/www/wwwroot/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/download.html -------------------------------------------------------------------------------- /Source/www/wwwroot/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/download.php -------------------------------------------------------------------------------- /Source/www/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Source/www/wwwroot/grant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/grant.html -------------------------------------------------------------------------------- /Source/www/wwwroot/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/history.html -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-01.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-02.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-03.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-04.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-05.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/prod-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/prod-06.jpg -------------------------------------------------------------------------------- /Source/www/wwwroot/images/tech-sch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/images/tech-sch.gif -------------------------------------------------------------------------------- /Source/www/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/index.html -------------------------------------------------------------------------------- /Source/www/wwwroot/old_news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/old_news.html -------------------------------------------------------------------------------- /Source/www/wwwroot/onlinedemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/onlinedemo.html -------------------------------------------------------------------------------- /Source/www/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/www/wwwroot/search_ddc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/search_ddc.html -------------------------------------------------------------------------------- /Source/www/wwwroot/technology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/technology.html -------------------------------------------------------------------------------- /Source/www/wwwroot/vacan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Source/www/wwwroot/vacan.html -------------------------------------------------------------------------------- /Texts/computer.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/computer.tar.gz -------------------------------------------------------------------------------- /Texts/computer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/computer.txt -------------------------------------------------------------------------------- /Texts/finance.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/finance.tar.gz -------------------------------------------------------------------------------- /Texts/finance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/finance.txt -------------------------------------------------------------------------------- /Texts/freq_comp.txt: -------------------------------------------------------------------------------- 1 | computer.txt 2 | -------------------------------------------------------------------------------- /Texts/freq_fin.txt: -------------------------------------------------------------------------------- 1 | finance.txt 2 | -------------------------------------------------------------------------------- /Texts/freq_hud.txt: -------------------------------------------------------------------------------- 1 | hud.lit.txt 2 | -------------------------------------------------------------------------------- /Texts/hud.lit.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/hud.lit.tar.gz -------------------------------------------------------------------------------- /Texts/hud.lit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Texts/hud.lit.txt -------------------------------------------------------------------------------- /Thes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/CMakeLists.txt -------------------------------------------------------------------------------- /Thes/Comp/Ross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/CMakeLists.txt -------------------------------------------------------------------------------- /Thes/Comp/Ross/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/config.rcf -------------------------------------------------------------------------------- /Thes/Comp/Ross/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/domains.json -------------------------------------------------------------------------------- /Thes/Comp/Ross/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/domitems.tsv -------------------------------------------------------------------------------- /Thes/Comp/Ross/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/fields.json -------------------------------------------------------------------------------- /Thes/Comp/Ross/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/Ross/ross.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/Concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/Concepts.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/FreqCollocTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/FreqCollocTypes.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/GerOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/GerOborots.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/Lemmas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/Lemmas.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/Relats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/Relats.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/RusOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/RusOborots.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/Synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/Synonyms.txt -------------------------------------------------------------------------------- /Thes/Comp/StatThes/TextEntr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Comp/StatThes/TextEntr.txt -------------------------------------------------------------------------------- /Thes/Fin/Ross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/CMakeLists.txt -------------------------------------------------------------------------------- /Thes/Fin/Ross/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/config.rcf -------------------------------------------------------------------------------- /Thes/Fin/Ross/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/domains.json -------------------------------------------------------------------------------- /Thes/Fin/Ross/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/domitems.tsv -------------------------------------------------------------------------------- /Thes/Fin/Ross/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/fields.json -------------------------------------------------------------------------------- /Thes/Fin/Ross/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/Ross/ross.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/Concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/Concepts.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/FreqCollocTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/FreqCollocTypes.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/Lemmas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/Lemmas.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/Relats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/Relats.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/RusOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/RusOborots.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/Synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/Synonyms.txt -------------------------------------------------------------------------------- /Thes/Fin/StatThes/TextEntr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Fin/StatThes/TextEntr.txt -------------------------------------------------------------------------------- /Thes/Loc/Ross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/CMakeLists.txt -------------------------------------------------------------------------------- /Thes/Loc/Ross/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/config.rcf -------------------------------------------------------------------------------- /Thes/Loc/Ross/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/domains.json -------------------------------------------------------------------------------- /Thes/Loc/Ross/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/domitems.tsv -------------------------------------------------------------------------------- /Thes/Loc/Ross/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/fields.json -------------------------------------------------------------------------------- /Thes/Loc/Ross/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/Ross/ross.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/Concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/Concepts.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/FreqCollocTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/FreqCollocTypes.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/GerOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/GerOborots.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/Lemmas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/Lemmas.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/Relats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/Relats.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/RusOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/RusOborots.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/Synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/Synonyms.txt -------------------------------------------------------------------------------- /Thes/Loc/StatThes/TextEntr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Loc/StatThes/TextEntr.txt -------------------------------------------------------------------------------- /Thes/Omni/Ross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/CMakeLists.txt -------------------------------------------------------------------------------- /Thes/Omni/Ross/config.rcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/config.rcf -------------------------------------------------------------------------------- /Thes/Omni/Ross/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/domains.json -------------------------------------------------------------------------------- /Thes/Omni/Ross/domitems.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/domitems.tsv -------------------------------------------------------------------------------- /Thes/Omni/Ross/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/fields.json -------------------------------------------------------------------------------- /Thes/Omni/Ross/ross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/Ross/ross.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/Concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/Concepts.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/FreqCollocTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/FreqCollocTypes.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/GerOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/GerOborots.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/Lemmas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/Lemmas.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/Relats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/Relats.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/RusOborots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/RusOborots.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/Synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/Synonyms.txt -------------------------------------------------------------------------------- /Thes/Omni/StatThes/TextEntr.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/TextEntr.old -------------------------------------------------------------------------------- /Thes/Omni/StatThes/TextEntr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/Thes/Omni/StatThes/TextEntr.txt -------------------------------------------------------------------------------- /copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/copying -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/readme -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sokirko74/aot/HEAD/todo.txt --------------------------------------------------------------------------------