├── .gitignore ├── AMR ├── AMR-to-text │ ├── README.md │ ├── amrs │ │ └── .gitignore │ ├── lexicons │ │ ├── README.md │ │ ├── propbank │ │ │ ├── README.md │ │ │ ├── frames-adjectives-maybe.txt │ │ │ ├── frames-adjectives.txt │ │ │ ├── frames-entries.txt │ │ │ ├── frames-nouns-maybe.txt │ │ │ ├── frames-nouns.txt │ │ │ ├── frames-roles.txt │ │ │ ├── frames-verbs.txt │ │ │ └── frames │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ ├── translator │ │ │ ├── .gitignore │ │ │ └── README.md │ │ └── wiki │ │ │ ├── Locations.gf │ │ │ ├── LocationsEng.gf │ │ │ ├── LocationsLav.gf │ │ │ ├── Organisations.gf │ │ │ ├── OrganisationsEng.gf │ │ │ ├── OrganisationsLav.gf │ │ │ ├── Persons.gf │ │ │ ├── PersonsEng.gf │ │ │ └── PersonsLav.gf │ ├── rules │ │ ├── README.md │ │ └── amr2api.tsurgeon │ ├── tregex │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ ├── asm-5.1.jar │ │ │ ├── asm-analysis-5.1.jar │ │ │ ├── asm-tree-5.1.jar │ │ │ ├── hamcrest-core-1.3.jar │ │ │ ├── junit-4.12.jar │ │ │ ├── parboiled-core-1.1.7.jar │ │ │ ├── parboiled-java-1.1.7.jar │ │ │ └── stanford-tregex-3.8.0.jar │ │ ├── out │ │ │ ├── semeval │ │ │ │ ├── .gitignore │ │ │ │ ├── Leaves.gf │ │ │ │ ├── LeavesEng.gf │ │ │ │ ├── Trees.gf │ │ │ │ ├── TreesEng.gf │ │ │ │ ├── gf_start.sh │ │ │ │ ├── gf_stop.sh │ │ │ │ ├── log │ │ │ │ │ └── sort.sh │ │ │ │ └── out │ │ │ │ │ ├── dryrun │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── answer-extended.txt │ │ │ │ │ ├── answer-partial-extended.txt │ │ │ │ │ ├── answer-partial.txt │ │ │ │ │ ├── answer.txt │ │ │ │ │ └── bleu.sh │ │ │ │ │ └── evaluation │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── answer-partial.txt │ │ │ │ │ └── answer.txt │ │ │ └── tests │ │ │ │ ├── TestLexicon.gf │ │ │ │ ├── TestLexiconEng.gf │ │ │ │ ├── TestLexiconLav.gf │ │ │ │ ├── TestLexiconRus.gf │ │ │ │ ├── TestTrees.gf │ │ │ │ ├── TestTrees.gfs │ │ │ │ ├── TestTreesEng.gf │ │ │ │ ├── TestTreesLav.gf │ │ │ │ ├── TestTreesRus.gf │ │ │ │ ├── output.txt │ │ │ │ └── test.sh │ │ └── src │ │ │ └── org │ │ │ └── grammaticalframework │ │ │ ├── WordExtractor.java │ │ │ └── amr │ │ │ ├── Processor.java │ │ │ ├── peg │ │ │ ├── AMRGrammar.java │ │ │ └── AMRNode.java │ │ │ ├── propbank │ │ │ └── FrameExtractor.java │ │ │ └── tregex │ │ │ ├── Tester.java │ │ │ └── Transformer.java │ └── workflow.png ├── README.md └── text-to-AMR │ └── README.md ├── RDF └── RDF.gf ├── README.md ├── SUMO ├── Basic.gf ├── BasicBul.gf ├── BasicEng.gf ├── BasicFre.gf ├── BasicRon.gf ├── BasicSwe.gf ├── Birds.gf ├── BirdsBul.gf ├── BirdsEng.gf ├── BirdsSwe.gf ├── Communications.gf ├── CountriesAndRegions.gf ├── CountriesAndRegionsEng.gf ├── CountriesAndRegionsRon.gf ├── Economy.gf ├── EconomyEng.gf ├── EconomyFre.gf ├── EconomyRon.gf ├── Elements.gf ├── ElementsEng.gf ├── Engineering.gf ├── EngineeringEng.gf ├── EngineeringFre.gf ├── EngineeringRon.gf ├── FinancialOntology.gf ├── Geography.gf ├── GeographyEng.gf ├── Government.gf ├── Merge.gf ├── MergeBul.gf ├── MergeEng.gf ├── MergeFre.gf ├── MergeRon.gf ├── MergeSwe.gf ├── MidLevelOntology.gf ├── MidLevelOntologyEng.gf ├── MidLevelOntologyFre.gf ├── MidLevelOntologyRon.gf ├── Military.gf ├── Mondial.gf ├── MondialEng.gf ├── QoSontology.gf ├── QoSontologyEng.gf ├── QoSontologyFre.gf ├── QoSontologyRon.gf ├── RGLExt │ ├── DictLang.gf │ ├── DictLangEng.gf │ ├── DictLangFre.gf │ ├── DictLangRon.gf │ ├── Extension.gf │ ├── ExtensionEng.gf │ ├── ExtensionFre.gf │ ├── ExtensionRon.gf │ ├── ExtraLexicon.gf │ ├── ExtraLexiconFre.gf │ ├── ExtraLexiconRon.gf │ └── ParamBasic.gf ├── SUMO.gf ├── SUMOBul.gf ├── SUMOEng.gf ├── SUMOFre.gf ├── SUMORon.gf ├── SUMOSwe.gf ├── TPTP │ ├── CommunicationsAx.p │ ├── CommunicationsLemAx.p │ ├── CommunicationsPredAx.p │ ├── CountriesAndRegionsAx.p │ ├── CountriesAndRegionsLemAx.p │ ├── EconomyAx.p │ ├── EconomyLemAx.p │ ├── EconomyPredAx.p │ ├── EconomySubAttAx.p │ ├── FinancialOntologyAx.p │ ├── FinancialOntologyLemAx.p │ ├── GeographyAx.p │ ├── GeographyLemAx.p │ ├── GeographyPredAx.p │ ├── GeographySubAttAx.p │ ├── GovernmentAx.p │ ├── GovernmentLemAx.p │ ├── GovernmentPredAx.p │ ├── GovernmentSubAttAx.p │ ├── MergeAx.p │ ├── MergeLemAx.p │ ├── MergePredAx.p │ ├── MergeSubAttAx.p │ ├── Mid_level_ontologyAx.p │ ├── Mid_level_ontologyLemAx.p │ ├── Mid_level_ontologyPredAx.p │ ├── Mid_level_ontologySubAttAx.p │ ├── MilitaryAx.p │ ├── MilitaryLemAx.p │ ├── MilitaryPredAx.p │ ├── QoSOntologyAx.p │ ├── QoSOntologyLemAx.p │ ├── TransportationAx.p │ ├── TransportationLemAx.p │ ├── TransportationPredAx.p │ ├── WMDAx.p │ ├── WMDLemAx.p │ ├── WMDPredAx.p │ ├── WMDSubAttAx.p │ ├── WorldAirportsA_KAx.p │ ├── WorldAirportsA_KPredAx.p │ ├── WorldAirportsL_ZAx.p │ ├── WorldAirportsL_ZPredAx.p │ ├── elementsAx.p │ ├── elementsLemAx.p │ ├── elementsPredAx.p │ ├── engineeringAx.p │ ├── engineeringLemAx.p │ ├── mondialAx.p │ ├── mondialPredAx.p │ ├── test1.p │ ├── test2.p │ └── test3.p ├── Transportation.gf ├── WMD.gf ├── WorldAirportsA_K.gf ├── WorldAirportsL_Z.gf └── axioms │ ├── Communications.gft │ ├── CountriesAndRegions.gft │ ├── CountriesAndRegionsP.gft │ ├── Economy.gft │ ├── EconomyHiO.gft │ ├── EconomyP.gft │ ├── EconomySubAtt.gft │ ├── EconomySubRel.gft │ ├── Either.gft │ ├── ExtraLem.gft │ ├── FinancialOntology.gft │ ├── FinancialOntologyHiO.gft │ ├── FinancialOntologySubRel.gft │ ├── Geography.gft │ ├── GeographyHiO.gft │ ├── GeographyP.gft │ ├── GeographySubAtt.gft │ ├── GeographySubRel.gft │ ├── Government.gft │ ├── GovernmentHiO.gft │ ├── GovernmentP.gft │ ├── GovernmentSubAtt.gft │ ├── GovernmentSubRel.gft │ ├── Merge.gft │ ├── MergeHiO.gft │ ├── MergeP.gft │ ├── MergeSubAtt.gft │ ├── MergeSubRel.gft │ ├── Mid_level_ontology.gft │ ├── Mid_level_ontologyHiO.gft │ ├── Mid_level_ontologyP.gft │ ├── Mid_level_ontologySubAtt.gft │ ├── Mid_level_ontologySubRel.gft │ ├── Military.gft │ ├── MilitaryP.gft │ ├── QoSOntology.gft │ ├── QoSOntologySubRel.gft │ ├── Transportation.gft │ ├── TransportationP.gft │ ├── TransportationSubRel.gft │ ├── WMD.gft │ ├── WMDP.gft │ ├── WMDSubAtt.gft │ ├── WorldAirportsA-KP.gft │ ├── WorldAirportsL-ZP.gft │ ├── elements.gft │ ├── elementsP.gft │ ├── engineering.gft │ ├── engineeringHiO.gft │ ├── engineeringP.gft │ └── mondialP.gft ├── SweCcn ├── README.md ├── auxiliary │ ├── CatToFunAbs.gf │ └── CatToFunCnc.gf └── cxg │ ├── CxnSweAbs.gf │ ├── CxnSweCnc.gf │ └── CxnSweRes.gf ├── YAQL ├── BuildQueryBul.gf ├── BuildQueryCat.gf ├── BuildQueryChi.gf ├── BuildQueryDan.gf ├── BuildQueryDut.gf ├── BuildQueryEng.gf ├── BuildQueryFin.gf ├── BuildQueryFre.gf ├── BuildQueryGer.gf ├── BuildQueryInterface.gf ├── BuildQueryIta.gf ├── BuildQueryNor.gf ├── BuildQueryRon.gf ├── BuildQueryRus.gf ├── BuildQuerySpa.gf ├── BuildQuerySwe.gf ├── NumeralHaskell.gf ├── NumeralSPARQL.gf ├── QueryArithm.gf ├── QueryArithmChi.gf ├── QueryArithmEng.gf ├── QueryArithmGer.gf ├── QueryArithmHaskell.gf ├── QueryArithmSwe.gf ├── QueryPhil.gf ├── QueryPhilEng.gf ├── QueryPhilFin.gf ├── QueryPhilFre.gf ├── QueryPhilSwe.gf ├── QueryProton.gf ├── QueryProtonEng.gf ├── README ├── ResHaskell.gf ├── ResSPARQL.gf ├── YAQL.gf ├── YAQL1SPARQL.gf ├── YAQLBul.gf ├── YAQLCat.gf ├── YAQLChi.gf ├── YAQLDan.gf ├── YAQLDut.gf ├── YAQLEng.gf ├── YAQLFin.gf ├── YAQLFre.gf ├── YAQLFunctor.gf ├── YAQLGer.gf ├── YAQLHaskell.gf ├── YAQLHeb.gf ├── YAQLIta.gf ├── YAQLNor.gf ├── YAQLRon.gf ├── YAQLRus.gf ├── YAQLSPARQL.gf ├── YAQLSpa.gf ├── YAQLSwe.gf ├── arithm.sh └── mini │ ├── MathQuery.gf │ ├── MathQueryEng.gf │ ├── MathQueryHs.gf │ ├── Query.gf │ ├── QueryEng.gf │ ├── QueryHs.gf │ ├── README │ └── query.sh ├── animals ├── Animals.gf ├── AnimalsEng.gf ├── AnimalsFre.gf ├── AnimalsSwe.gf ├── OldQuestionsI.gfe ├── Questions.gf ├── QuestionsEng.gf ├── QuestionsFre.gf ├── QuestionsI.gf ├── QuestionsI.gfe └── QuestionsSwe.gf ├── attempto ├── Attempto.gf ├── Attempto1.gf ├── AttemptoDan.gf ├── AttemptoEng.gf ├── AttemptoFin.gf ├── AttemptoFre.gf ├── AttemptoGer.gf ├── AttemptoI.gf ├── AttemptoIta.gf ├── AttemptoSwe.gf ├── AttemptoUrd.gf ├── LexAttempto.gf ├── LexAttemptoDan.gf ├── LexAttemptoEng.gf ├── LexAttemptoFin.gf ├── LexAttemptoFre.gf ├── LexAttemptoGer.gf ├── LexAttemptoIta.gf ├── LexAttemptoSwe.gf ├── LexAttemptoUrd.gf ├── Symbols.gf ├── SymbolsC.gf ├── TestAttempto.gf ├── TestAttemptoDan.gf ├── TestAttemptoEng.gf ├── TestAttemptoFin.gf ├── TestAttemptoFre.gf ├── TestAttemptoGer.gf ├── TestAttemptoIta.gf ├── TestAttemptoSwe.gf ├── TestAttemptoUrd.gf └── embedded │ ├── Attempto.gf │ ├── AttemptoEng.gf │ ├── AttemptoI.gf │ ├── EmbeddedAttempto.gf │ ├── EmbeddedAttemptoEng.gf │ ├── LexAttempto.gf │ ├── LexAttemptoEng.gf │ ├── Makefile │ ├── README │ ├── Symbols.gf │ ├── SymbolsC.gf │ └── attempto.probs ├── best-practices ├── Facebook.gf ├── FacebookEng.gf ├── FacebookI.gf ├── LexFacebook.gf ├── LexFacebookEng.gf └── corpus.txt ├── bronzeage ├── Bronzeage.gf ├── BronzeageAra.gf ├── BronzeageBul.gf ├── BronzeageCat.gf ├── BronzeageDan.gf ├── BronzeageEng.gf ├── BronzeageFin.gf ├── BronzeageFre.gf ├── BronzeageGer.gf ├── BronzeageI.gf ├── BronzeageIta.gf ├── BronzeageNor.gf ├── BronzeagePol.gf ├── BronzeageRon.gf ├── BronzeageRus.gf ├── BronzeageSpa.gf ├── BronzeageSwe.gf ├── BronzeageUrd.gf ├── Makefile ├── Swadesh.gf ├── SwadeshAra.gf ├── SwadeshBul.gf ├── SwadeshCat.gf ├── SwadeshDan.gf ├── SwadeshEng.gf ├── SwadeshFin.gf ├── SwadeshFre.gf ├── SwadeshGer.gf ├── SwadeshI.gf ├── SwadeshIta.gf ├── SwadeshNor.gf ├── SwadeshPol.gf ├── SwadeshRon.gf ├── SwadeshRus.gf ├── SwadeshSpa.gf ├── SwadeshSwe.gf └── SwadeshUrd.gf ├── c-bindings ├── PGFFFI.hs ├── build-gfctest.sh ├── gf_lexing.c ├── gf_lexing.h ├── gfctest.c ├── gpl-3.0.txt ├── lgpl-2.1.txt ├── lgpl-3.0.txt ├── pgf.h └── readme-ffi.txt ├── cade-2011 ├── Dockerfile ├── Makefile ├── Prop.gf ├── Prop.hs ├── PropENF.gf ├── PropEng.gf ├── PropFin.gf ├── PropFre.gf ├── PropGer.gf ├── PropI.gf ├── PropLatex.gf ├── PropPor.gf ├── PropStr.gf ├── PropSwe.gf ├── README.md ├── Trans.hs ├── TransProp.hs ├── cade.cabal ├── stack.yaml └── stack.yaml.lock ├── category-theory ├── Adjoints.gf ├── Categories.gf ├── CategoryTheory.gf ├── Equalizer.gf ├── Functor.gf ├── InitialAndTerminal.gf ├── Monad.gf ├── Morphisms.gf └── NaturalTransform.gf ├── catgram ├── CatGram.gf ├── CatGramCCGEng.gf ├── CatGramCCGEus.gf ├── CatGramLambda.gf └── README.md ├── character-lexing ├── Love.gf ├── LoveEng.gf ├── LoveMlt.gf ├── LoveMltX.gf ├── Makefile ├── README.md ├── ResMlt.gf ├── parse.hs ├── strings.mlt.txt ├── strings.mltx.txt └── trees.txt ├── computer ├── Computer.gf ├── ComputerEng.gf ├── ComputerFin.gf ├── ComputerSwe.gf ├── Dator.gf ├── DatorEng.gf ├── DatorFin.gf └── DatorSwe.gf ├── core-wordnet ├── CoreWordnet.gf ├── CoreWordnetEng.gf ├── CoreWordnetIce.gf ├── core-isl.txt ├── core-wordnet.txt ├── license-core-isl.txt └── readme-core-isl.txt ├── dates ├── Dates.gf ├── DatesEng.gf ├── DatesFin.gf ├── DatesFre.gf └── DatesSwe.gf ├── dictionary └── empty ├── discourse ├── Discourse.gf ├── DiscourseEng.gf ├── DiscourseFin.gf └── particles.txt ├── eaglesconv ├── CollectLemmas.hs ├── EaglesConv.hs ├── EaglesMatcher.hs ├── EaglesParser.hs ├── README ├── mkAbstract.sh ├── mkConcrete.sh └── run_conv.sh ├── experiments ├── Dep.gf ├── Dep.labels └── DepEng.gf ├── extmini ├── Grammar.gf ├── GrammarCmn.gf ├── GrammarEng.gf ├── GrammarIta.gf ├── Lang.gf ├── LangCmn.gf ├── LangEng.gf ├── LangIta.gf ├── Lexicon.gf ├── LexiconCmn.gf ├── LexiconEng.gf ├── LexiconIta.gf ├── ParadigmsCmn.gf ├── ParadigmsEng.gf ├── ParadigmsIta.gf ├── README ├── ResCmn.gf ├── ResEng.gf ├── ResIta.gf ├── Syntax.gf ├── SyntaxCmn.gf ├── SyntaxEng.gf ├── SyntaxIta.gf ├── compsyntax-test-Ita.txt └── compsyntax.gfs ├── foods ├── CharactersGla.gf ├── CharactersGle.gf ├── Foods.gf ├── FoodsAfr.gf ├── FoodsAmh.gf ├── FoodsBul.gf ├── FoodsCat.gf ├── FoodsChi.gf ├── FoodsCze.gf ├── FoodsDut.gf ├── FoodsEng.gf ├── FoodsEpo.gf ├── FoodsFin.gf ├── FoodsFre.gf ├── FoodsGer.gf ├── FoodsGla.gf ├── FoodsGle.gf ├── FoodsHeb.gf ├── FoodsHin.gf ├── FoodsI.gf ├── FoodsIce.gf ├── FoodsIta.gf ├── FoodsJpn.gf ├── FoodsLat.gf ├── FoodsLav.gf ├── FoodsMkd.gf ├── FoodsMlt.gf ├── FoodsMon.gf ├── FoodsNep.gf ├── FoodsOri.gf ├── FoodsPes.gf ├── FoodsPor.gf ├── FoodsRon.gf ├── FoodsSpa.gf ├── FoodsSwe.gf ├── FoodsTha.gf ├── FoodsTsn.gf ├── FoodsTur.gf ├── FoodsUrd.gf ├── LexFoods.gf ├── LexFoodsCat.gf ├── LexFoodsFin.gf ├── LexFoodsGer.gf ├── LexFoodsIta.gf ├── LexFoodsLat.gf ├── LexFoodsSwe.gf ├── Makefile ├── MutationsGla.gf ├── MutationsGle.gf ├── README ├── ResCze.gf └── transFoodsHin.gf ├── framenet ├── README.md ├── examples │ └── phrasebook │ │ ├── Greetings.gf │ │ ├── GreetingsEng.gf │ │ ├── GreetingsSwe.gf │ │ ├── Phrasebook.gf │ │ ├── PhrasebookEng.gf │ │ ├── PhrasebookSwe.gf │ │ ├── Sentences.gf │ │ ├── SentencesEng.gf │ │ ├── SentencesI.gf │ │ ├── SentencesSwe.gf │ │ ├── Words.gf │ │ ├── WordsEng.gf │ │ └── WordsSwe.gf └── lib │ ├── Elements.gf │ ├── ElementsEng.gf │ ├── ElementsI.gf │ ├── ElementsSwe.gf │ ├── Patterns.gf │ ├── PatternsEng.gf │ ├── PatternsSwe.gf │ ├── Targets.gf │ ├── TargetsEng.gf │ ├── TargetsEngAbs.gf │ ├── TargetsEngCnc.gf │ ├── TargetsSwe.gf │ ├── TargetsSweAbs.gf │ └── TargetsSweCnc.gf ├── gadt-transfer ├── Foods.gf ├── FoodsDut.gf ├── FoodsEng.gf ├── Makefile ├── README └── VeryFoods.hs ├── gfcc ├── CleanJVM.hs ├── Imper.gf ├── ImperC.gf ├── ImperJVM.gf ├── Makefile ├── README ├── ResImper.gf ├── abs.c ├── complin.bbl ├── complin.pdf ├── complin.tex ├── factorial.c ├── fibonacci.c ├── gfcc └── runtime.j ├── gfm-format ├── Food.gfm └── Words.gfm ├── graftals ├── Cantor.gf ├── Dragon.gf ├── Graftal.gf ├── Koch.gf ├── Sierpinski.gf └── Turtle.gf ├── grammar-terms ├── GrammarTerms.gf ├── GrammarTermsEng.gf ├── GrammarTermsGF.gf └── MkTerms.hs ├── hammurabi ├── Hammurabi.gf ├── HammurabiAkk.gf ├── HammurabiDut.gf ├── HammurabiEng.gf ├── README.md └── akkadian │ ├── Grammar.gf │ ├── GrammarAkk.gf │ ├── ParadigmsAkk.gf │ ├── ResAkk.gf │ ├── Syntax.gf │ └── SyntaxAkk.gf ├── homotopy-typetheory ├── Formulas.gf ├── FormulasLatex.gf ├── FormulasLogic.gf ├── Framework.gf ├── FrameworkEng.gf ├── FrameworkFre.gf ├── FrameworkFunctor.gf ├── FrameworkInstanceEng.gf ├── FrameworkInstanceFre.gf ├── FrameworkInterface.gf ├── FrameworkLogic.gf ├── HottLexicon.gf ├── HottLexiconEng.gf ├── HottLexiconFre.gf ├── HottLexiconLogic.gf ├── HottLexiconSwe.gf ├── hott.png ├── index.html ├── index.txt ├── ltest.logic ├── ltestEng.pdf ├── ltestEng.tex ├── ltestFre.pdf ├── ltestFre.tex ├── ltestLogic.txt ├── ltestTrees.txt ├── macros.tex └── trees-ltext.txt ├── hsk ├── Hsk1.gf ├── Hsk1Chi.gf ├── Hsk1Eng.gf ├── Hsk1Pinyin.gf ├── OperHSK.hs └── notes.txt ├── jem-math ├── LexMath.gf ├── LexMathFre.gf ├── LexMathSpa.gf ├── LexMathSwe.gf ├── Math.gf ├── MathEng.gf ├── MathFre.gf ├── MathI.gf ├── MathIta.gf ├── MathIta1.gf ├── MathSpa.gf └── MathSwe.gf ├── letter ├── Letter.gf ├── Letter.pgf ├── LetterEng.gf ├── LetterFin.gf ├── LetterFre.gf ├── LetterHeb.gf ├── LetterRus.gf ├── LetterSwe.gf ├── Makefile ├── README └── editor │ └── editor.html ├── lrec-tutorial ├── Ara.gf ├── AraAra.gf ├── Arabic.gf ├── Grammar.gf ├── GrammarIta.gf ├── GrammarIta0.gf ├── Lang.gf ├── LangIta.gf ├── LexFaceIta.gf ├── Morpho.gf ├── One.gf ├── ResIta.gf ├── Zero.gf ├── ZeroDut.gf ├── ZeroEng.gf ├── ZeroFre.gf ├── ZeroGer.gf ├── ZeroHeb.gf ├── ZeroHebTr.gf ├── ZeroIta.gf ├── ZeroKas.gf ├── ZeroLat.gf └── face │ ├── Face.gf │ ├── FaceEn0.gf │ ├── FaceEng.gf │ ├── FaceFin.gf │ ├── FaceI.gf │ ├── FaceIta.gf │ ├── LexFace.gf │ ├── LexFaceEng.gf │ ├── LexFaceFin.gf │ └── LexFaceIta.gf ├── mathtext ├── Geometry.gf ├── GeometryEng.gf ├── GeometryFre.gf ├── GeometryGer.gf ├── LexLogic.gf ├── LexLogicEng.gf ├── LexLogicFre.gf ├── LexLogicGer.gf ├── Logic.gf ├── LogicEng.gf ├── LogicFre.gf ├── LogicGer.gf ├── LogicI.gf ├── MathGeom.gf ├── MathGeomEng.gf ├── MathGeomFre.gf ├── MathGeomGer.gf ├── MathText.gf ├── MathTextEng.gf ├── MathTextFre.gf ├── MathTextGer.gf ├── MathTextI.gf ├── Symbols.gf └── SymbolsX.gf ├── messages ├── Messages.gf ├── MessagesEng.gf └── MessagesFre.gf ├── mgl ├── COPYING ├── COPYING.LESSER ├── Compile.hs ├── GfLexer.py ├── Makefile ├── README-AR ├── Setup.hs ├── abstract │ ├── Arith1.gf │ ├── Arith2.gf │ ├── BinaryOps.gf │ ├── Calculus1.gf │ ├── Commands.gf │ ├── Complex1.gf │ ├── Fns1.gf │ ├── Fns2.gf │ ├── Ground.gf │ ├── Integer1.gf │ ├── Integer2.gf │ ├── Interval1.gf │ ├── Limit1.gf │ ├── LinAlg1.gf │ ├── LinAlg2.gf │ ├── Literals.gf │ ├── Logic1.gf │ ├── MathBar.gf │ ├── MinMax1.gf │ ├── MixtureTest.gf │ ├── Nums1.gf │ ├── OpenMath.gf │ ├── Operations.gf │ ├── PlanGeo1.gf │ ├── ProvaGround.gf │ ├── Quant1.gf │ ├── Relation1.gf │ ├── Rounding1.gf │ ├── SData1.gf │ ├── Set1.gf │ ├── SetName1.gf │ ├── Test.gf │ ├── Transc1.gf │ ├── Variables.gf │ └── VecCalc1.gf ├── bulgarian │ ├── Arith1Bul.gf │ ├── Arith2Bul.gf │ ├── BinaryOpsBul.gf │ ├── Calculus1Bul.gf │ ├── Complex1Bul.gf │ ├── Fns1Bul.gf │ ├── GroundBul.gf │ ├── Integer1Bul.gf │ ├── Integer2Bul.gf │ ├── Interval1Bul.gf │ ├── LexiconBul.gf │ ├── Limit1Bul.gf │ ├── LinAlg1Bul.gf │ ├── LinAlg2Bul.gf │ ├── LiteralsBul.gf │ ├── Logic1Bul.gf │ ├── MathBarBul.gf │ ├── MathBul.gf │ ├── MinMax1Bul.gf │ ├── Nums1Bul.gf │ ├── OpenMathBul.gf │ ├── OperationsBul.gf │ ├── PlanGeo1Bul.gf │ ├── Quant1Bul.gf │ ├── Relation1Bul.gf │ ├── Rounding1Bul.gf │ ├── SData1Bul.gf │ ├── Set1Bul.gf │ ├── SetName1Bul.gf │ ├── TestBul.gf │ ├── Transc1Bul.gf │ ├── VariablesBul.gf │ └── VecCalc1Bul.gf ├── catalan │ ├── Arith1Cat.gf │ ├── Arith2Cat.gf │ ├── BinaryOpsCat.gf │ ├── Calculus1Cat.gf │ ├── CommandsCat.gf │ ├── Complex1Cat.gf │ ├── Fns1Cat.gf │ ├── GroundCat.gf │ ├── Integer1Cat.gf │ ├── Integer2Cat.gf │ ├── Interval1Cat.gf │ ├── LexiconCat.gf │ ├── Limit1Cat.gf │ ├── LinAlg1Cat.gf │ ├── LinAlg2Cat.gf │ ├── LiteralsCat.gf │ ├── Logic1Cat.gf │ ├── MathBarCat.gf │ ├── MathCat.gf │ ├── MinMax1Cat.gf │ ├── Nums1Cat.gf │ ├── OpenMathCat.gf │ ├── OperationsCat.gf │ ├── PlanGeo1Cat.gf │ ├── Quant1Cat.gf │ ├── Relation1Cat.gf │ ├── Rounding1Cat.gf │ ├── SData1Cat.gf │ ├── Set1Cat.gf │ ├── SetName1Cat.gf │ ├── TestCat.gf │ ├── Transc1Cat.gf │ ├── VariablesCat.gf │ └── VecCalc1Cat.gf ├── doc │ └── AbstractOM23.txt ├── english │ ├── Arith1Eng.gf │ ├── Arith2Eng.gf │ ├── BinaryOpsEng.gf │ ├── Calculus1Eng.gf │ ├── CommandsEng.gf │ ├── Complex1Eng.gf │ ├── Fns1Eng.gf │ ├── Fns2Eng.gf │ ├── GroundEng.gf │ ├── Integer1Eng.gf │ ├── Integer2Eng.gf │ ├── Interval1Eng.gf │ ├── LexiconEng.gf │ ├── Limit1Eng.gf │ ├── LinAlg1Eng.gf │ ├── LinAlg2Eng.gf │ ├── LiteralsEng.gf │ ├── Logic1Eng.gf │ ├── MathBarEng.gf │ ├── MathEng.gf │ ├── MinMax1Eng.gf │ ├── Nums1Eng.gf │ ├── OpenMathEng.gf │ ├── OperationsEng.gf │ ├── PlanGeo1Eng.gf │ ├── Quant1Eng.gf │ ├── Relation1Eng.gf │ ├── Rounding1Eng.gf │ ├── SData1Eng.gf │ ├── Set1Eng.gf │ ├── SetName1Eng.gf │ ├── TestEng.gf │ ├── Transc1Eng.gf │ ├── VariablesEng.gf │ └── VecCalc1Eng.gf ├── finnish │ ├── Arith1Fin.gf │ ├── Arith2Fin.gf │ ├── BinaryOpsFin.gf │ ├── Calculus1Fin.gf │ ├── Complex1Fin.gf │ ├── Fns1Fin.gf │ ├── GroundFin.gf │ ├── Integer1Fin.gf │ ├── Integer2Fin.gf │ ├── Interval1Fin.gf │ ├── LexiconFin.gf │ ├── Limit1Fin.gf │ ├── LinAlg1Fin.gf │ ├── LinAlg2Fin.gf │ ├── LiteralsFin.gf │ ├── Logic1Fin.gf │ ├── MathBarFin.gf │ ├── MathFin.gf │ ├── MinMax1Fin.gf │ ├── Nums1Fin.gf │ ├── OpenMathFin.gf │ ├── OperationsFin.gf │ ├── PlanGeo1Fin.gf │ ├── Quant1Fin.gf │ ├── Relation1Fin.gf │ ├── Rounding1Fin.gf │ ├── SData1Fin.gf │ ├── Set1Fin.gf │ ├── SetName1Fin.gf │ ├── TestFin.gf │ ├── Transc1Fin.gf │ ├── VariablesFin.gf │ └── VecCalc1Fin.gf ├── french │ ├── Arith1Fre.gf │ ├── Arith2Fre.gf │ ├── BinaryOpsFre.gf │ ├── Calculus1Fre.gf │ ├── Complex1Fre.gf │ ├── Fns1Fre.gf │ ├── GroundFre.gf │ ├── Integer1Fre.gf │ ├── Integer2Fre.gf │ ├── Interval1Fre.gf │ ├── LexiconFre.gf │ ├── Limit1Fre.gf │ ├── LinAlg1Fre.gf │ ├── LinAlg2Fre.gf │ ├── LiteralsFre.gf │ ├── Logic1Fre.gf │ ├── MathBarFre.gf │ ├── MathFre.gf │ ├── MinMax1Fre.gf │ ├── Nums1Fre.gf │ ├── OpenMathFre.gf │ ├── OperationsFre.gf │ ├── PlanGeo1Fre.gf │ ├── Quant1Fre.gf │ ├── Relation1Fre.gf │ ├── Rounding1Fre.gf │ ├── SData1Fre.gf │ ├── Set1Fre.gf │ ├── SetName1Fre.gf │ ├── TestFre.gf │ ├── Transc1Fre.gf │ ├── VariablesFre.gf │ └── VecCalc1Fre.gf ├── german │ ├── Arith1Ger.gf │ ├── Arith2Ger.gf │ ├── BinaryOpsGer.gf │ ├── Calculus1Ger.gf │ ├── CommandsGer.gf │ ├── Complex1Ger.gf │ ├── Fns1Ger.gf │ ├── GroundGer.gf │ ├── Integer1Ger.gf │ ├── Integer2Ger.gf │ ├── Interval1Ger.gf │ ├── LexiconGer.gf │ ├── Limit1Ger.gf │ ├── LinAlg1Ger.gf │ ├── LinAlg2Ger.gf │ ├── LiteralsGer.gf │ ├── Logic1Ger.gf │ ├── MathBarGer.gf │ ├── MathGer.gf │ ├── MinMax1Ger.gf │ ├── Nums1Ger.gf │ ├── OpenMathGer.gf │ ├── OperationsGer.gf │ ├── PlanGeo1Ger.gf │ ├── Quant1Ger.gf │ ├── Relation1Ger.gf │ ├── Rounding1Ger.gf │ ├── SData1Ger.gf │ ├── Set1Ger.gf │ ├── SetName1Ger.gf │ ├── TestGer.gf │ ├── Transc1Ger.gf │ ├── VariablesGer.gf │ └── VecCalc1Ger.gf ├── hindi │ ├── Arith1Hin.gf │ ├── Arith2Hin.gf │ ├── BinaryOpsHin.gf │ ├── Calculus1Hin.gf │ ├── Complex1Hin.gf │ ├── Fns1Hin.gf │ ├── GroundHin.gf │ ├── Integer1Hin.gf │ ├── Integer2Hin.gf │ ├── Interval1Hin.gf │ ├── LexiconHin.gf │ ├── Limit1Hin.gf │ ├── LinAlg1Hin.gf │ ├── LinAlg2Hin.gf │ ├── LiteralsHin.gf │ ├── Logic1Hin.gf │ ├── MathBarHin.gf │ ├── MathFormsHin0.gf │ ├── MathHin.gf │ ├── MathHin0.gf │ ├── MinMax1Hin.gf │ ├── Nums1Hin.gf │ ├── OpenMathHin.gf │ ├── PlanGeo1Hin.gf │ ├── Quant1Hin.gf │ ├── Relation1Hin.gf │ ├── Rounding1Hin.gf │ ├── SData1Hin.gf │ ├── Set1Hin.gf │ ├── SetName1Hin.gf │ ├── TestHin.gf │ ├── Transc1Hin.gf │ ├── VariablesHin.gf │ ├── VecCalc1Hin.gf │ ├── src │ │ ├── LexiconHin.gf │ │ ├── MathHin.gf │ │ └── MathHin0.gf │ ├── translitHin.gfs │ └── urd.txt ├── italian │ ├── Arith1Ita.gf │ ├── Arith2Ita.gf │ ├── BinaryOpsIta.gf │ ├── Calculus1Ita.gf │ ├── Complex1Ita.gf │ ├── Fns1Ita.gf │ ├── GroundIta.gf │ ├── Integer1Ita.gf │ ├── Integer2Ita.gf │ ├── Interval1Ita.gf │ ├── LexiconIta.gf │ ├── Limit1Ita.gf │ ├── LinAlg1Ita.gf │ ├── LinAlg2Ita.gf │ ├── LiteralsIta.gf │ ├── Logic1Ita.gf │ ├── MathBarIta.gf │ ├── MathIta.gf │ ├── MinMax1Ita.gf │ ├── Nums1Ita.gf │ ├── OpenMathIta.gf │ ├── OperationsIta.gf │ ├── PlanGeo1Ita.gf │ ├── Quant1Ita.gf │ ├── Relation1Ita.gf │ ├── Rounding1Ita.gf │ ├── SData1Ita.gf │ ├── Set1Ita.gf │ ├── SetName1Ita.gf │ ├── TestIta.gf │ ├── Transc1Ita.gf │ ├── VariablesIta.gf │ └── VecCalc1Ita.gf ├── latex │ ├── Arith1LaTeX.gf │ ├── Arith2LaTeX.gf │ ├── BinaryOpsLaTeX.gf │ ├── Calculus1LaTeX.gf │ ├── Complex1LaTeX.gf │ ├── Fns1LaTeX.gf │ ├── GroundLaTeX.gf │ ├── Integer1LaTeX.gf │ ├── Integer2LaTeX.gf │ ├── Interval1LaTeX.gf │ ├── Limit1LaTeX.gf │ ├── LinAlg1LaTeX.gf │ ├── LinAlg2LaTeX.gf │ ├── LiteralsLaTeX.gf │ ├── Logic1LaTeX.gf │ ├── MathBarLaTeX.gf │ ├── MathLaTeX.gf │ ├── MinMax1LaTeX.gf │ ├── Nums1LaTeX.gf │ ├── OpenMathLaTeX.gf │ ├── PlanGeo1LaTeX.gf │ ├── Quant1LaTeX.gf │ ├── Relation1LaTeX.gf │ ├── Rounding1LaTeX.gf │ ├── SData1LaTeX.gf │ ├── Set1LaTeX.gf │ ├── SetName1LaTeX.gf │ ├── Transc1LaTeX.gf │ ├── VariablesLaTeX.gf │ ├── VecCalc1LaTeX.gf │ └── myLaTeX.gf ├── mgl.cabal ├── mixture │ ├── abstract │ │ ├── Arith1.gf │ │ ├── Arith2.gf │ │ ├── BinaryOps.gf │ │ ├── Calculus1.gf │ │ ├── Complex1.gf │ │ ├── Fns1.gf │ │ ├── Fns2.gf │ │ ├── Ground.gf │ │ ├── Integer1.gf │ │ ├── Integer2.gf │ │ ├── Interval1.gf │ │ ├── Limit1.gf │ │ ├── LinAlg1.gf │ │ ├── LinAlg2.gf │ │ ├── Literals.gf │ │ ├── Logic1.gf │ │ ├── MathBar.gf │ │ ├── MinMax1.gf │ │ ├── MixtureTest.gf │ │ ├── Nums1.gf │ │ ├── OpenMath.gf │ │ ├── PlanGeo1.gf │ │ ├── ProvaGround.gf │ │ ├── Quant1.gf │ │ ├── Relation1.gf │ │ ├── Rounding1.gf │ │ ├── SData1.gf │ │ ├── Set1.gf │ │ ├── SetName1.gf │ │ ├── Transc1.gf │ │ ├── Variables.gf │ │ └── VecCalc1.gf │ ├── bulgarian │ │ ├── Arith1Bul.gf │ │ ├── Arith2Bul.gf │ │ ├── BinaryOpsBul.gf │ │ ├── Calculus1Bul.gf │ │ ├── Complex1Bul.gf │ │ ├── Fns1Bul.gf │ │ ├── GroundBul.gf │ │ ├── Integer1Bul.gf │ │ ├── Integer2Bul.gf │ │ ├── Interval1Bul.gf │ │ ├── LexiconBul.gf │ │ ├── Limit1Bul.gf │ │ ├── LinAlg1Bul.gf │ │ ├── LinAlg2Bul.gf │ │ ├── LiteralsBul.gf │ │ ├── Logic1Bul.gf │ │ ├── MathBarBul.gf │ │ ├── MathBul.gf │ │ ├── MinMax1Bul.gf │ │ ├── Nums1Bul.gf │ │ ├── OpenMathBul.gf │ │ ├── PlanGeo1Bul.gf │ │ ├── Quant1Bul.gf │ │ ├── Relation1Bul.gf │ │ ├── Rounding1Bul.gf │ │ ├── SData1Bul.gf │ │ ├── Set1Bul.gf │ │ ├── SetName1Bul.gf │ │ ├── TestBul.gf │ │ ├── Transc1Bul.gf │ │ ├── VariablesBul.gf │ │ └── VecCalc1Bul.gf │ ├── catalan │ │ ├── Arith1Cat.gf │ │ ├── Arith2Cat.gf │ │ ├── BinaryOpsCat.gf │ │ ├── Calculus1Cat.gf │ │ ├── Complex1Cat.gf │ │ ├── Fns1Cat.gf │ │ ├── GroundCat.gf │ │ ├── Integer1Cat.gf │ │ ├── Integer2Cat.gf │ │ ├── Interval1Cat.gf │ │ ├── LexiconCat.gf │ │ ├── Limit1Cat.gf │ │ ├── LinAlg1Cat.gf │ │ ├── LinAlg2Cat.gf │ │ ├── LiteralsCat.gf │ │ ├── Logic1Cat.gf │ │ ├── MathBarCat.gf │ │ ├── MathCat.gf │ │ ├── MinMax1Cat.gf │ │ ├── Nums1Cat.gf │ │ ├── OpenMathCat.gf │ │ ├── PlanGeo1Cat.gf │ │ ├── Quant1Cat.gf │ │ ├── Relation1Cat.gf │ │ ├── Rounding1Cat.gf │ │ ├── SData1Cat.gf │ │ ├── Set1Cat.gf │ │ ├── SetName1Cat.gf │ │ ├── TestCat.gf │ │ ├── Transc1Cat.gf │ │ ├── VariablesCat.gf │ │ └── VecCalc1Cat.gf │ ├── english │ │ ├── Arith1Eng.gf │ │ ├── Arith2Eng.gf │ │ ├── BinaryOpsEng.gf │ │ ├── Calculus1Eng.gf │ │ ├── Complex1Eng.gf │ │ ├── Fns1Eng.gf │ │ ├── Fns2Eng.gf │ │ ├── GroundEng.gf │ │ ├── Integer1Eng.gf │ │ ├── Integer2Eng.gf │ │ ├── Interval1Eng.gf │ │ ├── LexiconEng.gf │ │ ├── Limit1Eng.gf │ │ ├── LinAlg1Eng.gf │ │ ├── LinAlg2Eng.gf │ │ ├── LiteralsEng.gf │ │ ├── Logic1Eng.gf │ │ ├── MathBarEng.gf │ │ ├── MathEng.gf │ │ ├── MinMax1Eng.gf │ │ ├── MixtureTestEng.gf │ │ ├── Nums1Eng.gf │ │ ├── OpenMathEng.gf │ │ ├── PlanGeo1Eng.gf │ │ ├── Quant1Eng.gf │ │ ├── Relation1Eng.gf │ │ ├── Rounding1Eng.gf │ │ ├── SData1Eng.gf │ │ ├── Set1Eng.gf │ │ ├── SetName1Eng.gf │ │ ├── Transc1Eng.gf │ │ ├── VariablesEng.gf │ │ └── VecCalc1Eng.gf │ ├── finnish │ │ ├── Arith1Fin.gf │ │ ├── Arith2Fin.gf │ │ ├── BinaryOpsFin.gf │ │ ├── Calculus1Fin.gf │ │ ├── Complex1Fin.gf │ │ ├── Fns1Fin.gf │ │ ├── GroundFin.gf │ │ ├── Integer1Fin.gf │ │ ├── Integer2Fin.gf │ │ ├── Interval1Fin.gf │ │ ├── LexiconFin.gf │ │ ├── Limit1Fin.gf │ │ ├── LinAlg1Fin.gf │ │ ├── LinAlg2Fin.gf │ │ ├── LiteralsFin.gf │ │ ├── Logic1Fin.gf │ │ ├── MathBarFin.gf │ │ ├── MathFin.gf │ │ ├── MinMax1Fin.gf │ │ ├── Nums1Fin.gf │ │ ├── OpenMathFin.gf │ │ ├── PlanGeo1Fin.gf │ │ ├── Quant1Fin.gf │ │ ├── Relation1Fin.gf │ │ ├── Rounding1Fin.gf │ │ ├── SData1Fin.gf │ │ ├── Set1Fin.gf │ │ ├── SetName1Fin.gf │ │ ├── TestFin.gf │ │ ├── Transc1Fin.gf │ │ ├── VariablesFin.gf │ │ └── VecCalc1Fin.gf │ ├── french │ │ ├── Arith1Fre.gf │ │ ├── Arith2Fre.gf │ │ ├── BinaryOpsFre.gf │ │ ├── Calculus1Fre.gf │ │ ├── Complex1Fre.gf │ │ ├── Fns1Fre.gf │ │ ├── GroundFre.gf │ │ ├── Integer1Fre.gf │ │ ├── Integer2Fre.gf │ │ ├── Interval1Fre.gf │ │ ├── LexiconFre.gf │ │ ├── Limit1Fre.gf │ │ ├── LinAlg1Fre.gf │ │ ├── LinAlg2Fre.gf │ │ ├── LiteralsFre.gf │ │ ├── Logic1Fre.gf │ │ ├── MathBarFre.gf │ │ ├── MathFre.gf │ │ ├── MinMax1Fre.gf │ │ ├── Nums1Fre.gf │ │ ├── OpenMathFre.gf │ │ ├── PlanGeo1Fre.gf │ │ ├── Quant1Fre.gf │ │ ├── Relation1Fre.gf │ │ ├── Rounding1Fre.gf │ │ ├── SData1Fre.gf │ │ ├── Set1Fre.gf │ │ ├── SetName1Fre.gf │ │ ├── TestFre.gf │ │ ├── Transc1Fre.gf │ │ ├── VariablesFre.gf │ │ └── VecCalc1Fre.gf │ ├── german │ │ ├── Arith1Ger.gf │ │ ├── Arith2Ger.gf │ │ ├── BinaryOpsGer.gf │ │ ├── Calculus1Ger.gf │ │ ├── Complex1Ger.gf │ │ ├── Fns1Ger.gf │ │ ├── GroundGer.gf │ │ ├── Integer1Ger.gf │ │ ├── Integer2Ger.gf │ │ ├── Interval1Ger.gf │ │ ├── LexiconGer.gf │ │ ├── Limit1Ger.gf │ │ ├── LinAlg1Ger.gf │ │ ├── LinAlg2Ger.gf │ │ ├── LiteralsGer.gf │ │ ├── Logic1Ger.gf │ │ ├── MathBarGer.gf │ │ ├── MathGer.gf │ │ ├── MinMax1Ger.gf │ │ ├── MixtureTestGer.gf │ │ ├── Nums1Ger.gf │ │ ├── OpenMathGer.gf │ │ ├── PlanGeo1Ger.gf │ │ ├── Quant1Ger.gf │ │ ├── Relation1Ger.gf │ │ ├── Rounding1Ger.gf │ │ ├── SData1Ger.gf │ │ ├── Set1Ger.gf │ │ ├── SetName1Ger.gf │ │ ├── Transc1Ger.gf │ │ ├── VariablesGer.gf │ │ └── VecCalc1Ger.gf │ ├── hindi │ │ ├── Arith1Hin.gf │ │ ├── Arith2Hin.gf │ │ ├── BinaryOpsHin.gf │ │ ├── Calculus1Hin.gf │ │ ├── Complex1Hin.gf │ │ ├── Fns1Hin.gf │ │ ├── GroundHin.gf │ │ ├── Integer1Hin.gf │ │ ├── Integer2Hin.gf │ │ ├── Interval1Hin.gf │ │ ├── LexiconHin.gf │ │ ├── Limit1Hin.gf │ │ ├── LinAlg1Hin.gf │ │ ├── LinAlg2Hin.gf │ │ ├── LiteralsHin.gf │ │ ├── Logic1Hin.gf │ │ ├── MathBarHin.gf │ │ ├── MathFormsHin0.gf │ │ ├── MathHin.gf │ │ ├── MathHin0.gf │ │ ├── MinMax1Hin.gf │ │ ├── Nums1Hin.gf │ │ ├── OpenMathHin.gf │ │ ├── PlanGeo1Hin.gf │ │ ├── Quant1Hin.gf │ │ ├── Relation1Hin.gf │ │ ├── Rounding1Hin.gf │ │ ├── SData1Hin.gf │ │ ├── Set1Hin.gf │ │ ├── SetName1Hin.gf │ │ ├── TestHin.gf │ │ ├── Transc1Hin.gf │ │ ├── VariablesHin.gf │ │ ├── VecCalc1Hin.gf │ │ ├── translitHin.gfs │ │ └── urd.txt │ ├── italian │ │ ├── Arith1Ita.gf │ │ ├── Arith2Ita.gf │ │ ├── BinaryOpsIta.gf │ │ ├── Calculus1Ita.gf │ │ ├── Complex1Ita.gf │ │ ├── Fns1Ita.gf │ │ ├── GroundIta.gf │ │ ├── Integer1Ita.gf │ │ ├── Integer2Ita.gf │ │ ├── Interval1Ita.gf │ │ ├── LexiconIta.gf │ │ ├── Limit1Ita.gf │ │ ├── LinAlg1Ita.gf │ │ ├── LinAlg2Ita.gf │ │ ├── LiteralsIta.gf │ │ ├── Logic1Ita.gf │ │ ├── MathBarIta.gf │ │ ├── MathIta.gf │ │ ├── MinMax1Ita.gf │ │ ├── Nums1Ita.gf │ │ ├── OpenMathIta.gf │ │ ├── PlanGeo1Ita.gf │ │ ├── Quant1Ita.gf │ │ ├── Relation1Ita.gf │ │ ├── Rounding1Ita.gf │ │ ├── SData1Ita.gf │ │ ├── Set1Ita.gf │ │ ├── SetName1Ita.gf │ │ ├── TestIta.gf │ │ ├── Transc1Ita.gf │ │ ├── VariablesIta.gf │ │ └── VecCalc1Ita.gf │ ├── latex │ │ ├── Arith1LaTeX.gf │ │ ├── Arith2LaTeX.gf │ │ ├── BinaryOpsLaTeX.gf │ │ ├── Calculus1LaTeX.gf │ │ ├── Complex1LaTeX.gf │ │ ├── Fns1LaTeX.gf │ │ ├── GroundLaTeX.gf │ │ ├── Integer1LaTeX.gf │ │ ├── Integer2LaTeX.gf │ │ ├── Interval1LaTeX.gf │ │ ├── Limit1LaTeX.gf │ │ ├── LinAlg1LaTeX.gf │ │ ├── LinAlg2LaTeX.gf │ │ ├── Logic1LaTeX.gf │ │ ├── MathBarLaTeX.gf │ │ ├── MathLaTeX.gf │ │ ├── MinMax1LaTeX.gf │ │ ├── Nums1LaTeX.gf │ │ ├── OpenMathLaTeX.gf │ │ ├── PlanGeo1LaTeX.gf │ │ ├── Quant1LaTeX.gf │ │ ├── Relation1LaTeX.gf │ │ ├── Rounding1LaTeX.gf │ │ ├── SData1LaTeX.gf │ │ ├── Set1LaTeX.gf │ │ ├── SetName1LaTeX.gf │ │ ├── Transc1LaTeX.gf │ │ ├── VariablesLaTeX.gf │ │ ├── VecCalc1LaTeX.gf │ │ └── myLaTeX.gf │ ├── polish │ │ ├── Arith1Pol.gf │ │ ├── Arith2Pol.gf │ │ ├── BinaryOpsPol.gf │ │ ├── Calculus1Pol.gf │ │ ├── Complex1Pol.gf │ │ ├── Fns1Pol.gf │ │ ├── GroundPol.gf │ │ ├── Integer1Pol.gf │ │ ├── Integer2Pol.gf │ │ ├── Interval1Pol.gf │ │ ├── LexiconPol.gf │ │ ├── Limit1Pol.gf │ │ ├── LinAlg1Pol.gf │ │ ├── LinAlg2Pol.gf │ │ ├── LiteralsPol.gf │ │ ├── Logic1Pol.gf │ │ ├── MathBarPol.gf │ │ ├── MathPol.gf │ │ ├── MinMax1Pol.gf │ │ ├── Nums1Pol.gf │ │ ├── OpenMathPol.gf │ │ ├── PlanGeo1Pol.gf │ │ ├── Quant1Pol.gf │ │ ├── Relation1Pol.gf │ │ ├── Rounding1Pol.gf │ │ ├── SData1Pol.gf │ │ ├── Set1Pol.gf │ │ ├── SetName1Pol.gf │ │ ├── TestPol.gf │ │ ├── Transc1Pol.gf │ │ ├── VariablesPol.gf │ │ └── VecCalc1Pol.gf │ ├── resources │ │ ├── Arith1I.gf │ │ ├── Arith2I.gf │ │ ├── BinaryOpsI.gf │ │ ├── Calculus1I.gf │ │ ├── Complex1I.gf │ │ ├── Fns1I.gf │ │ ├── Fns2I.gf │ │ ├── GroundI.gf │ │ ├── Integer1I.gf │ │ ├── Integer2I.gf │ │ ├── Interval1I.gf │ │ ├── Lexicon.gf │ │ ├── LexiconX.gf │ │ ├── Limit1I.gf │ │ ├── LinAlg1I.gf │ │ ├── LinAlg2I.gf │ │ ├── LiteralsI.gf │ │ ├── Logic1I.gf │ │ ├── Math.gf │ │ ├── MathI.gf │ │ ├── MinMax1I.gf │ │ ├── Nums1I.gf │ │ ├── ParamTends.gf │ │ ├── PlanGeo1I.gf │ │ ├── Quant1I.gf │ │ ├── Relation1I.gf │ │ ├── Rounding1I.gf │ │ ├── SData1I.gf │ │ ├── Set1I.gf │ │ ├── SetName1I.gf │ │ ├── Transc1I.gf │ │ ├── VariablesI.gf │ │ ├── VecCalc1I.gf │ │ └── myFormal.gf │ ├── romanian │ │ ├── Arith1Ron.gf │ │ ├── Arith2Ron.gf │ │ ├── BinaryOpsRon.gf │ │ ├── Calculus1Ron.gf │ │ ├── Complex1Ron.gf │ │ ├── Fns1Ron.gf │ │ ├── GroundRon.gf │ │ ├── Integer1Ron.gf │ │ ├── Integer2Ron.gf │ │ ├── Interval1Ron.gf │ │ ├── LexiconRon.gf │ │ ├── Limit1Ron.gf │ │ ├── LinAlg1Ron.gf │ │ ├── LinAlg2Ron.gf │ │ ├── LiteralsRon.gf │ │ ├── Logic1Ron.gf │ │ ├── MathBarRon.gf │ │ ├── MathRon.gf │ │ ├── MinMax1Ron.gf │ │ ├── NextLexiconRon.gf │ │ ├── Nums1Ron.gf │ │ ├── OpenMathRon.gf │ │ ├── PlanGeo1Ron.gf │ │ ├── Quant1Ron.gf │ │ ├── Relation1Ron.gf │ │ ├── Rounding1Ron.gf │ │ ├── SData1Ron.gf │ │ ├── Set1Ron.gf │ │ ├── SetName1Ron.gf │ │ ├── TestRon.gf │ │ ├── Transc1Ron.gf │ │ ├── VariablesRon.gf │ │ └── VecCalc1Ron.gf │ ├── russian │ │ ├── Arith1Rus.gf │ │ ├── Arith2Rus.gf │ │ ├── BinaryOpsRus.gf │ │ ├── Calculus1Rus.gf │ │ ├── Complex1Rus.gf │ │ ├── Fns1Rus.gf │ │ ├── GroundRus.gf │ │ ├── Integer1Rus.gf │ │ ├── Integer2Rus.gf │ │ ├── Interval1Rus.gf │ │ ├── LexiconRus.gf │ │ ├── Limit1Rus.gf │ │ ├── LinAlg1Rus.gf │ │ ├── LinAlg2Rus.gf │ │ ├── LiteralsRus.gf │ │ ├── Logic1Rus.gf │ │ ├── MathBarRus.gf │ │ ├── MathRus.gf │ │ ├── MinMax1Rus.gf │ │ ├── Nums1Rus.gf │ │ ├── OpenMathRus.gf │ │ ├── PlanGeo1Rus.gf │ │ ├── Quant1Rus.gf │ │ ├── Relation1Rus.gf │ │ ├── Rounding1Rus.gf │ │ ├── SData1Rus.gf │ │ ├── Set1Rus.gf │ │ ├── SetName1Rus.gf │ │ ├── TestRus.gf │ │ ├── Transc1Rus.gf │ │ ├── VariablesRus.gf │ │ └── VecCalc1Rus.gf │ ├── spanish │ │ ├── Arith1Spa.gf │ │ ├── Arith2Spa.gf │ │ ├── BinaryOpsSpa.gf │ │ ├── Calculus1Spa.gf │ │ ├── Complex1Spa.gf │ │ ├── Fns1Spa.gf │ │ ├── GroundSpa.gf │ │ ├── Integer1Spa.gf │ │ ├── Integer2Spa.gf │ │ ├── Interval1Spa.gf │ │ ├── LexiconSpa.gf │ │ ├── Limit1Spa.gf │ │ ├── LinAlg1Spa.gf │ │ ├── LinAlg2Spa.gf │ │ ├── LiteralsSpa.gf │ │ ├── Logic1Spa.gf │ │ ├── MathBarSpa.gf │ │ ├── MathSpa.gf │ │ ├── MinMax1Spa.gf │ │ ├── MixtureTestSpa.gf │ │ ├── Nums1Spa.gf │ │ ├── OpenMathSpa.gf │ │ ├── PlanGeo1Spa.gf │ │ ├── Quant1Spa.gf │ │ ├── Relation1Spa.gf │ │ ├── Rounding1Spa.gf │ │ ├── SData1Spa.gf │ │ ├── Set1Spa.gf │ │ ├── SetName1Spa.gf │ │ ├── Transc1Spa.gf │ │ ├── VariablesSpa.gf │ │ └── VecCalc1Spa.gf │ ├── swedish │ │ ├── Arith1Swe.gf │ │ ├── Arith2Swe.gf │ │ ├── BinaryOpsSwe.gf │ │ ├── Calculus1Swe.gf │ │ ├── Complex1Swe.gf │ │ ├── Fns1Swe.gf │ │ ├── GroundSwe.gf │ │ ├── Integer1Swe.gf │ │ ├── Integer2Swe.gf │ │ ├── Interval1Swe.gf │ │ ├── LexiconSwe.gf │ │ ├── Limit1Swe.gf │ │ ├── LinAlg1Swe.gf │ │ ├── LinAlg2Swe.gf │ │ ├── LiteralsSwe.gf │ │ ├── Logic1Swe.gf │ │ ├── MathBarSwe.gf │ │ ├── MathSwe.gf │ │ ├── MinMax1Swe.gf │ │ ├── Nums1Swe.gf │ │ ├── OpenMathSwe.gf │ │ ├── PlanGeo1Swe.gf │ │ ├── Quant1Swe.gf │ │ ├── Relation1Swe.gf │ │ ├── Rounding1Swe.gf │ │ ├── SData1Swe.gf │ │ ├── Set1Swe.gf │ │ ├── SetName1Swe.gf │ │ ├── TestSwe.gf │ │ ├── Transc1Swe.gf │ │ ├── VariablesSwe.gf │ │ └── VecCalc1Swe.gf │ └── urdu │ │ ├── Arith1Urd.gf │ │ ├── Arith2Urd.gf │ │ ├── BinaryOpsUrd.gf │ │ ├── Calculus1Urd.gf │ │ ├── Complex1Urd.gf │ │ ├── Fns1Urd.gf │ │ ├── GroundUrd.gf │ │ ├── Integer1Urd.gf │ │ ├── Integer2Urd.gf │ │ ├── Interval1Urd.gf │ │ ├── LexiconUrd.gf │ │ ├── Limit1Urd.gf │ │ ├── LinAlg1Urd.gf │ │ ├── LinAlg2Urd.gf │ │ ├── LiteralsUrd.gf │ │ ├── Logic1Urd.gf │ │ ├── MathBarUrd.gf │ │ ├── MathFormsUrd0.gf │ │ ├── MathUrd.gf │ │ ├── MathUrd0.gf │ │ ├── MinMax1Urd.gf │ │ ├── Nums1Urd.gf │ │ ├── OpenMathUrd.gf │ │ ├── PlanGeo1Urd.gf │ │ ├── Quant1Urd.gf │ │ ├── Relation1Urd.gf │ │ ├── Rounding1Urd.gf │ │ ├── SData1Urd.gf │ │ ├── Set1Urd.gf │ │ ├── SetName1Urd.gf │ │ ├── TestUrd.gf │ │ ├── Transc1Urd.gf │ │ ├── VariablesUrd.gf │ │ └── VecCalc1Urd.gf ├── polish │ ├── Arith1Pol.gf │ ├── Arith2Pol.gf │ ├── BinaryOpsPol.gf │ ├── Calculus1Pol.gf │ ├── Complex1Pol.gf │ ├── Fns1Pol.gf │ ├── GroundPol.gf │ ├── Integer1Pol.gf │ ├── Integer2Pol.gf │ ├── Interval1Pol.gf │ ├── LexiconPol.gf │ ├── Limit1Pol.gf │ ├── LinAlg1Pol.gf │ ├── LinAlg2Pol.gf │ ├── LiteralsPol.gf │ ├── Logic1Pol.gf │ ├── MathBarPol.gf │ ├── MathPol.gf │ ├── MinMax1Pol.gf │ ├── Nums1Pol.gf │ ├── OpenMathPol.gf │ ├── OperationsPol.gf │ ├── PlanGeo1Pol.gf │ ├── Quant1Pol.gf │ ├── Relation1Pol.gf │ ├── Rounding1Pol.gf │ ├── SData1Pol.gf │ ├── Set1Pol.gf │ ├── SetName1Pol.gf │ ├── TestPol.gf │ ├── Transc1Pol.gf │ ├── VariablesPol.gf │ └── VecCalc1Pol.gf ├── refactor.py ├── resources │ ├── Arith1I.gf │ ├── Arith2I.gf │ ├── BinaryOpsI.gf │ ├── BinaryOpsMinimal.gf │ ├── BinaryOpsNone.gf │ ├── Calculus1I.gf │ ├── CommandsI.gf │ ├── Complex1I.gf │ ├── Fns1I.gf │ ├── Fns2I.gf │ ├── GroundI.gf │ ├── Integer1I.gf │ ├── Integer2I.gf │ ├── Interval1I.gf │ ├── Lexicon.gf │ ├── LexiconX.gf │ ├── Limit1I.gf │ ├── LinAlg1I.gf │ ├── LinAlg2I.gf │ ├── LiteralsI.gf │ ├── Logic1I.gf │ ├── Math.gf │ ├── MathI.gf │ ├── MinMax1I.gf │ ├── Nums1I.gf │ ├── OperationsI.gf │ ├── PlanGeo1I.gf │ ├── Quant1I.gf │ ├── Relation1I.gf │ ├── Rounding1I.gf │ ├── SData1I.gf │ ├── Set1I.gf │ ├── SetName1I.gf │ ├── Transc1I.gf │ ├── VariablesI.gf │ ├── VecCalc1I.gf │ └── myFormal.gf ├── romanian │ ├── Arith1Ron.gf │ ├── Arith2Ron.gf │ ├── BinaryOpsRon.gf │ ├── Calculus1Ron.gf │ ├── Complex1Ron.gf │ ├── Fns1Ron.gf │ ├── GroundRon.gf │ ├── Integer1Ron.gf │ ├── Integer2Ron.gf │ ├── Interval1Ron.gf │ ├── LexiconRon.gf │ ├── Limit1Ron.gf │ ├── LinAlg1Ron.gf │ ├── LinAlg2Ron.gf │ ├── LiteralsRon.gf │ ├── Logic1Ron.gf │ ├── MathBarRon.gf │ ├── MathRon.gf │ ├── MinMax1Ron.gf │ ├── NextLexiconRon.gf │ ├── Nums1Ron.gf │ ├── OpenMathRon.gf │ ├── OperationsRon.gf │ ├── PlanGeo1Ron.gf │ ├── Quant1Ron.gf │ ├── Relation1Ron.gf │ ├── Rounding1Ron.gf │ ├── SData1Ron.gf │ ├── Set1Ron.gf │ ├── SetName1Ron.gf │ ├── TestRon.gf │ ├── Transc1Ron.gf │ ├── VariablesRon.gf │ └── VecCalc1Ron.gf ├── russian │ ├── Arith1Rus.gf │ ├── Arith2Rus.gf │ ├── BinaryOpsRus.gf │ ├── Calculus1Rus.gf │ ├── Complex1Rus.gf │ ├── Fns1Rus.gf │ ├── GroundRus.gf │ ├── Integer1Rus.gf │ ├── Integer2Rus.gf │ ├── Interval1Rus.gf │ ├── LexiconRus.gf │ ├── Limit1Rus.gf │ ├── LinAlg1Rus.gf │ ├── LinAlg2Rus.gf │ ├── LiteralsRus.gf │ ├── Logic1Rus.gf │ ├── MathBarRus.gf │ ├── MathRus.gf │ ├── MinMax1Rus.gf │ ├── Nums1Rus.gf │ ├── OpenMathRus.gf │ ├── OperationsRus.gf │ ├── PlanGeo1Rus.gf │ ├── Quant1Rus.gf │ ├── Relation1Rus.gf │ ├── Rounding1Rus.gf │ ├── SData1Rus.gf │ ├── Set1Rus.gf │ ├── SetName1Rus.gf │ ├── TestRus.gf │ ├── Transc1Rus.gf │ ├── VariablesRus.gf │ └── VecCalc1Rus.gf ├── sage │ ├── Arith1Sage.gf │ ├── Arith2Sage.gf │ ├── BinaryOpsSage.gf │ ├── Calculus1Sage.gf │ ├── CommandsSage.gf │ ├── Complex1Sage.gf │ ├── Data │ │ └── UUID │ │ │ └── Aeson.hs │ ├── Fns1Sage.gf │ ├── GfSage.hs │ ├── GfSide.hs │ ├── GroundSage.gf │ ├── IPython.hs │ ├── Integer1Sage.gf │ ├── Integer2Sage.gf │ ├── Interval1Sage.gf │ ├── Limit1Sage.gf │ ├── LinAlg1Sage.gf │ ├── LinAlg2Sage.gf │ ├── LiteralsSage.gf │ ├── Logic1Sage.gf │ ├── Makefile │ ├── MathSage.gf │ ├── MinMax1Sage.gf │ ├── Nums1Sage.gf │ ├── OpenMathSage.gf │ ├── PlanGeo1Sage.gf │ ├── Quant1Sage.gf │ ├── README.md │ ├── Relation1Sage.gf │ ├── Rounding1Sage.gf │ ├── SData1Sage.gf │ ├── SageService.hs │ ├── SageSide.hs │ ├── Set1Sage.gf │ ├── SetName1Sage.gf │ ├── Test.hs │ ├── Transc1Sage.gf │ ├── Transfer.hs │ ├── VariablesSage.gf │ ├── VecCalc1Sage.gf │ ├── Voice.hs │ ├── gf.py │ ├── gfsage.py │ ├── kernel.py │ ├── mySage.gf │ ├── nlgf │ │ ├── Makefile │ │ ├── nlgf.py │ │ ├── prelude.sage │ │ └── realsets.py │ ├── samples-gfsage.txt │ ├── test.py │ └── voice.py ├── server │ ├── Cache.hs │ ├── ContentService.hs │ ├── FastCGIUtils.hs │ ├── LICENSE │ ├── MorphoService.hs │ ├── PGFService.hs │ ├── RunHTTP.hs │ ├── ServeStaticFile.hs │ ├── Setup.hs │ ├── Setup.original.hs │ ├── URLEncoding.hs │ ├── gf-server-jsapi.js │ ├── gf-server.cabal │ ├── lighttpd.conf │ ├── mathbar │ │ ├── brushed-metal.png │ │ ├── feedback.cgi │ │ ├── feedback.html │ │ ├── mathbar.css │ │ ├── mathbar.html │ │ ├── mathbar.js │ │ ├── pgf_online.js │ │ ├── support.js │ │ └── tree-btn.png │ ├── pgf-fcgi.hs │ ├── pgf-http.hs │ ├── simple-client.html │ ├── translator.css │ └── translator.js ├── setup.py ├── spanish │ ├── Arith1Spa.gf │ ├── Arith2Spa.gf │ ├── BinaryOpsSpa.gf │ ├── Calculus1Spa.gf │ ├── CommandsSpa.gf │ ├── Complex1Spa.gf │ ├── Fns1Spa.gf │ ├── GroundSpa.gf │ ├── Integer1Spa.gf │ ├── Integer2Spa.gf │ ├── Interval1Spa.gf │ ├── LexiconSpa.gf │ ├── Limit1Spa.gf │ ├── LinAlg1Spa.gf │ ├── LinAlg2Spa.gf │ ├── LiteralsSpa.gf │ ├── Logic1Spa.gf │ ├── MathBarSpa.gf │ ├── MathSpa.gf │ ├── MinMax1Spa.gf │ ├── Nums1Spa.gf │ ├── OpenMathSpa.gf │ ├── OperationsSpa.gf │ ├── PlanGeo1Spa.gf │ ├── Quant1Spa.gf │ ├── Relation1Spa.gf │ ├── Rounding1Spa.gf │ ├── SData1Spa.gf │ ├── Set1Spa.gf │ ├── SetName1Spa.gf │ ├── TestSpa.gf │ ├── Transc1Spa.gf │ ├── VariablesSpa.gf │ └── VecCalc1Spa.gf ├── src │ └── Main.hs ├── svn-commit.tmp ├── swedish │ ├── Arith1Swe.gf │ ├── Arith2Swe.gf │ ├── BinaryOpsSwe.gf │ ├── Calculus1Swe.gf │ ├── Complex1Swe.gf │ ├── Fns1Swe.gf │ ├── GroundSwe.gf │ ├── Integer1Swe.gf │ ├── Integer2Swe.gf │ ├── Interval1Swe.gf │ ├── LexiconSwe.gf │ ├── Limit1Swe.gf │ ├── LinAlg1Swe.gf │ ├── LinAlg2Swe.gf │ ├── LiteralsSwe.gf │ ├── Logic1Swe.gf │ ├── MathBarSwe.gf │ ├── MathSwe.gf │ ├── MinMax1Swe.gf │ ├── Nums1Swe.gf │ ├── OpenMathSwe.gf │ ├── OperationsSwe.gf │ ├── PlanGeo1Swe.gf │ ├── Quant1Swe.gf │ ├── Relation1Swe.gf │ ├── Rounding1Swe.gf │ ├── SData1Swe.gf │ ├── Set1Swe.gf │ ├── SetName1Swe.gf │ ├── TestSwe.gf │ ├── Transc1Swe.gf │ ├── VariablesSwe.gf │ └── VecCalc1Swe.gf ├── test │ ├── Defect.hs │ ├── Editor.hs │ ├── GPComment.hs │ ├── GPTicket.hs │ ├── GPUser.hs │ ├── Info.hs │ ├── Main.hs │ ├── Makefile │ ├── PdTicket.hs │ ├── ProjectManager.hs │ ├── Treebank.hs │ ├── Update.hs │ ├── Upgrade.hs │ ├── Validate.hs │ ├── create.py │ ├── entries.json │ ├── table │ └── treebank.json ├── transfer │ ├── Fold.hs │ └── Main.hs ├── trees.gfs ├── urdu │ ├── Arith1Urd.gf │ ├── Arith2Urd.gf │ ├── BinaryOpsUrd.gf │ ├── Calculus1Urd.gf │ ├── Complex1Urd.gf │ ├── Fns1Urd.gf │ ├── GroundUrd.gf │ ├── Integer1Urd.gf │ ├── Integer2Urd.gf │ ├── Interval1Urd.gf │ ├── LexiconUrd.gf │ ├── Limit1Urd.gf │ ├── LinAlg1Urd.gf │ ├── LinAlg2Urd.gf │ ├── LiteralsUrd.gf │ ├── Logic1Urd.gf │ ├── MathBarUrd.gf │ ├── MathFormsUrd0.gf │ ├── MathUrd.gf │ ├── MathUrd0.gf │ ├── MinMax1Urd.gf │ ├── Nums1Urd.gf │ ├── OpenMathUrd.gf │ ├── PlanGeo1Urd.gf │ ├── Quant1Urd.gf │ ├── Relation1Urd.gf │ ├── Rounding1Urd.gf │ ├── SData1Urd.gf │ ├── Set1Urd.gf │ ├── SetName1Urd.gf │ ├── TestUrd.gf │ ├── Transc1Urd.gf │ ├── VariablesUrd.gf │ └── VecCalc1Urd.gf ├── wproblems │ ├── Makefile.in │ ├── bin │ │ ├── setvars │ │ └── wpserver │ ├── configure │ ├── configure.ac │ ├── create.in │ ├── data │ │ ├── auto.pl │ │ ├── basic.pl │ │ ├── categories.pl │ │ ├── classes.pl │ │ ├── cli.pl │ │ ├── gui.pl │ │ ├── linear.pl │ │ └── tactics.pl │ ├── examples │ │ ├── fruit.pl │ │ ├── fruit2.pl │ │ ├── fruit3.pl │ │ └── fruith.pl │ ├── experimental │ │ ├── abstract │ │ │ ├── Amount.gf │ │ │ ├── Class.gf │ │ │ ├── Farm.gf │ │ │ ├── Fruits.gf │ │ │ ├── People.gf │ │ │ ├── Scalar.gf │ │ │ ├── TestProblems.gf │ │ │ └── WPProblem.gf │ │ ├── english │ │ │ ├── AmountEng.gf │ │ │ ├── ClassEng.gf │ │ │ ├── FarmEng.gf │ │ │ ├── FruitsEng.gf │ │ │ ├── PeopleEng.gf │ │ │ ├── ScalarEng.gf │ │ │ ├── TestProblemsEng.gf │ │ │ └── WPProblemEng.gf │ │ ├── german │ │ │ ├── AmountGer.gf │ │ │ ├── ClassGer.gf │ │ │ ├── FarmGer.gf │ │ │ ├── FruitsGer.gf │ │ │ ├── PeopleGer.gf │ │ │ ├── ScalarGer.gf │ │ │ ├── TestProblemsGer.gf │ │ │ └── WPProblemGer.gf │ │ ├── resources │ │ │ ├── AmountI.gf │ │ │ ├── ClassI.gf │ │ │ ├── FarmI.gf │ │ │ ├── FruitsI.gf │ │ │ ├── PeopleI.gf │ │ │ ├── ScalarI.gf │ │ │ └── WPProblemI.gf │ │ └── spanish │ │ │ ├── AmountSpa.gf │ │ │ ├── ClassSpa.gf │ │ │ ├── FarmSpa.gf │ │ │ ├── FruitsSpa.gf │ │ │ ├── PeopleSpa.gf │ │ │ ├── ScalarSpa.gf │ │ │ ├── TestProblemsSpa.gf │ │ │ └── WPProblemSpa.gf │ ├── lib │ │ ├── commons-codec-1.6.jar │ │ ├── commons-logging-1.1.jar │ │ ├── expect4j-1.0.jar │ │ ├── expectj-2.0.7.jar │ │ ├── gf-java.jar │ │ ├── httpclient-4.1.1.jar │ │ ├── httpcore-4.1.1.jar │ │ ├── jline-1.0.jar │ │ ├── jline-2.10.0-M2.jar │ │ ├── jsch-0.1.49.jar │ │ ├── json-simple-1.1.1.jar │ │ ├── junit-4.5.jar │ │ ├── scalatest_2.9.0-1.8.jar │ │ └── specs_2.9.1-1.6.9.jar │ ├── model.in │ ├── pre.scala │ ├── src │ │ ├── gf │ │ │ ├── AllProblems.gf │ │ │ ├── AllProblemsCat.gf │ │ │ ├── AllProblemsEng.gf │ │ │ ├── AllProblemsI.gf │ │ │ ├── AllProblemsProlog.gf │ │ │ ├── AllProblemsSpa.gf │ │ │ ├── AllProblemsSwe.gf │ │ │ ├── Amount.gf │ │ │ ├── AmountCat.gf │ │ │ ├── AmountEng.gf │ │ │ ├── AmountGer.gf │ │ │ ├── AmountI.gf │ │ │ ├── AmountProlog.gf │ │ │ ├── AmountSpa.gf │ │ │ ├── AmountSwe.gf │ │ │ ├── Class.gf │ │ │ ├── ClassCat.gf │ │ │ ├── ClassEng.gf │ │ │ ├── ClassGer.gf │ │ │ ├── ClassI.gf │ │ │ ├── ClassProlog.gf │ │ │ ├── ClassSpa.gf │ │ │ ├── ClassSwe.gf │ │ │ ├── Dialog.gf │ │ │ ├── DialogCat.gf │ │ │ ├── DialogEng.gf │ │ │ ├── DialogI.gf │ │ │ ├── DialogProlog.gf │ │ │ ├── DialogSpa.gf │ │ │ ├── DialogSwe.gf │ │ │ ├── PeopleEng.gf │ │ │ ├── PeopleI.gf │ │ │ ├── Qualifier.gf │ │ │ ├── QualifierCat.gf │ │ │ ├── QualifierEng.gf │ │ │ ├── QualifierI.gf │ │ │ ├── QualifierProlog.gf │ │ │ ├── QualifierSpa.gf │ │ │ ├── QualifierSwe.gf │ │ │ ├── Scalar.gf │ │ │ ├── ScalarCat.gf │ │ │ ├── ScalarEng.gf │ │ │ ├── ScalarGer.gf │ │ │ ├── ScalarI.gf │ │ │ ├── ScalarProlog.gf │ │ │ ├── ScalarSpa.gf │ │ │ ├── ScalarSwe.gf │ │ │ ├── WPEntity.gf │ │ │ ├── WPEntityCat.gf │ │ │ ├── WPEntityEng.gf │ │ │ ├── WPEntityI.gf │ │ │ ├── WPEntityProlog.gf │ │ │ ├── WPEntitySpa.gf │ │ │ ├── WPEntitySwe.gf │ │ │ ├── WPProblem.gf │ │ │ ├── WPProblemCat.gf │ │ │ ├── WPProblemEng.gf │ │ │ ├── WPProblemGer.gf │ │ │ ├── WPProblemI.gf │ │ │ ├── WPProblemProlog.gf │ │ │ ├── WPProblemSpa.gf │ │ │ ├── WPProblemSwe.gf │ │ │ ├── WPRelation.gf │ │ │ ├── WPRelationCat.gf │ │ │ ├── WPRelationEng.gf │ │ │ ├── WPRelationI.gf │ │ │ ├── WPRelationProlog.gf │ │ │ ├── WPRelationSpa.gf │ │ │ ├── WPRelationSwe.gf │ │ │ ├── WordProblems.gf │ │ │ ├── WordProblemsEng.gf │ │ │ ├── WordProblemsGer.gf │ │ │ └── WordProblemsSpa.gf │ │ └── scala │ │ │ ├── dsl.scala │ │ │ ├── gf.scala │ │ │ ├── prolog.scala │ │ │ └── test.scala │ └── test │ │ └── fruit.exp └── www │ ├── MOLTO Languages.jpg │ ├── about.html │ ├── content-gradient.png │ ├── img │ ├── add.gif │ ├── alert.gif │ ├── b-download.gif │ ├── button.gif │ ├── delete.gif │ ├── download.gif │ ├── info.gif │ ├── lens.gif │ ├── msg.gif │ └── user.gif │ ├── minibar.css │ ├── minibar.js │ ├── support.js │ └── webalt.html ├── mini ├── Grammar.gf ├── GrammarEng.gf ├── GrammarGot.gf ├── GrammarIta.gf ├── GrammarPor.gf ├── ParadigmsGot.gf ├── ParadigmsIta.gf ├── ParadigmsPor.gf ├── ResEng.gf ├── ResGot.gf ├── ResIta.gf ├── ResPor.gf ├── Syntax.gf ├── SyntaxGot.gf ├── SyntaxIta.gf ├── SyntaxPor.gf ├── Test.gf ├── TestEng.gf ├── TestGot.gf ├── TestIta.gf ├── TestPor.gf └── newmini │ ├── ExtMiniGrammar.gf │ ├── ExtMiniLang.gf │ ├── MidiGrammar.gf │ ├── MiniGrammar.gf │ ├── MiniGrammarEng.gf │ ├── MiniGrammarPor.gf │ ├── MiniGrammarSom.gf │ ├── MiniLang.gf │ ├── MiniLang.labels │ ├── MiniLangEng.gf │ ├── MiniLangEng.labels │ ├── MiniLangPor.gf │ ├── MiniLangSom.gf │ ├── MiniLexicon.gf │ ├── MiniLexiconEng.gf │ ├── MiniLexiconPor.gf │ ├── MiniLexiconSom.gf │ ├── MiniResEng.gf │ ├── MiniResPor.gf │ ├── MiniResSom.gf │ ├── README.t2t │ ├── finnic-functor │ ├── README.md │ ├── estonian │ │ ├── DiffEst.gf │ │ ├── MiniGrammarEst.gf │ │ ├── MiniLangEst.gf │ │ ├── MiniLexiconEst.gf │ │ └── ResEst.gf │ ├── finnic │ │ ├── CommonFinnic.gf │ │ ├── DiffFinnic.gf │ │ ├── MiniGrammarFinnic.gf │ │ └── ResFinnic.gf │ └── finnish │ │ ├── DiffFin.gf │ │ ├── MiniGrammarFin.gf │ │ ├── MiniLangFin.gf │ │ ├── MiniLexiconFin.gf │ │ └── ResFin.gf │ └── functor │ ├── MiniGrammarFunctor.gf │ ├── MiniGrammarFunctorEng.gf │ ├── MiniGrammarFunctorSwe.gf │ ├── MiniLangFunctorEng.gf │ ├── MiniLangFunctorSwe.gf │ ├── MiniLexiconFunctor.gf │ ├── MiniLexiconFunctorEng.gf │ └── MiniLexiconFunctorSwe.gf ├── miniresource ├── Miniresource.gf ├── MiniresourceChi.gf ├── MiniresourceEng.gf ├── MiniresourceFin.gf ├── MiniresourceFre.gf ├── MiniresourceGle.gf ├── MiniresourceI.gf ├── MiniresourceIChi.gf ├── MiniresourceIEng.gf ├── MiniresourceIta.gf ├── MiniresourceLogic.gf ├── MiniresourceSan.gf ├── MiniresourceSwe.gf └── ResGle.gf ├── morpho ├── Eng.gf ├── EngDescr.gf ├── EngReal.gf ├── Fre.gf ├── FreDescr.gf ├── FreReal.gf └── README.txt ├── multilingualheadlines ├── .gitattributes ├── .gitignore ├── README.md ├── dismissed │ └── headlinesEng.gf ├── headlines.gf ├── headlines.pgf ├── headlinesAra.gf ├── headlinesBaq.gf ├── headlinesCat.gf ├── headlinesChi.gf ├── headlinesEng.gf ├── headlinesFin.gf ├── headlinesFre.gf ├── headlinesGer.gf ├── headlinesGlg.gf ├── headlinesGre.gf ├── headlinesHeb.gf ├── headlinesHin.gf ├── headlinesHrv.gf ├── headlinesIta.gf ├── headlinesLav.gf ├── headlinesPol.gf ├── headlinesPor.gf ├── headlinesQue.gf ├── headlinesRum.gf ├── headlinesRus.gf ├── headlinesSpa.gf ├── headlinesSwa.gf ├── headlinesSwe.gf ├── headlinesTgl.gf ├── headlinesTur.gf └── multilingual_headlines.html ├── music ├── Diatonic.gf ├── DiatonicC.gf ├── Music.gf ├── MusicC.gf ├── MusicPolyphonic.gf ├── Pentatonic.gf ├── PentatonicC.gf └── README.md ├── nlg ├── Logic.gf ├── LogicCnc.gf ├── NLG.gf └── NLGEng.gf ├── nqueens ├── NQueens.gf ├── NQueensAscii.gf ├── Nat.gf └── NatAscii.gf ├── numerals ├── Numerals.gf ├── af_tunni.gf ├── albanian.gf ├── amharic.gf ├── arabic_classical.gf ├── arabic_modern.gf ├── basque.gf ├── bearlake_slave.gf ├── bulgarian.gf ├── catalan.gf ├── chinese.gf ├── croatian.gf ├── czech.gf ├── dagur.gf ├── danish.gf ├── decimal.gf ├── dothraki.gf ├── dutch.gf ├── english.gf ├── estonian.gf ├── finnish.gf ├── french.gf ├── french_belgian.gf ├── french_swiss.gf ├── frisian.gf ├── fulfulde.gf ├── geez.gf ├── german.gf ├── greek_classical.gf ├── greek_modern.gf ├── guahibo.gf ├── guarani.gf ├── hebrew_biblical.gf ├── hindi.gf ├── hungarian.gf ├── icelandic.gf ├── interlingua.gf ├── irish.gf ├── italian.gf ├── japanese.gf ├── kabardian.gf ├── kambera.gf ├── kawaiisu.gf ├── khmer.gf ├── khowar.gf ├── kolyma_yukaghir.gf ├── korean.gf ├── kulung.gf ├── kwami.gf ├── kwaza.gf ├── lalo.gf ├── lamani.gf ├── latvian.gf ├── lithuanian.gf ├── lotuxo.gf ├── maale.gf ├── malay.gf ├── maltese.gf ├── mapuche.gf ├── margi.gf ├── maybrat.gf ├── miya.gf ├── mongolian.gf ├── nenets.gf ├── norwegian_book.gf ├── old_church_slavonic.gf ├── oromo.gf ├── pashto.gf ├── polish.gf ├── portuguese.gf ├── quechua.gf ├── romanian.gf ├── russian.gf ├── sango.gf ├── slovak.gf ├── sorani.gf ├── spanish.gf ├── stieng.gf ├── swahili.gf ├── swedish.gf ├── tamil.gf ├── tampere.gf ├── thai.gf ├── tibetan.gf ├── todo │ ├── irula.gf │ ├── kodagu.gf │ ├── sanskrit.gf │ ├── sanskritTranslit.gf │ ├── thai.gf │ ├── thaiDU.gf │ ├── thaiP.gf │ └── welsh.gf ├── totonac.gf ├── tuda_daza.gf ├── tukang_besi.gf ├── turkish.gf ├── votic.gf ├── yasin_burushaski.gf ├── yiddish.gf └── zaiwa.gf ├── peacekeeping ├── EXAMPLES ├── Makefile ├── Peace.gf ├── PeaceCat.gf ├── PeaceCatI.gf ├── PeaceLexCommon.gf ├── PeaceLexCommonI.gf ├── PeaceLexExt.gf ├── PeacePhrases.gf ├── PeaceRes.gf ├── PeaceSpoken.gf ├── PeaceSyntax.gf ├── PeaceSyntaxI.gf ├── README ├── english │ ├── PeaceCat_Eng.gf │ ├── PeaceLexCommon_Eng.gf │ ├── PeaceLexExt_Eng.gf │ ├── PeacePhrases_Eng.gf │ ├── PeaceSpoken_Eng.gf │ ├── PeaceSyntax_Eng.gf │ └── Peace_Eng.gf ├── finnish │ ├── PeaceCat_Fin.gf │ ├── PeaceLexCommon_Fin.gf │ ├── PeaceLexExt_Fin.gf │ ├── PeacePhrases_Fin.gf │ ├── PeaceSpoken_Fin.gf │ ├── PeaceSyntax_Fin.gf │ └── Peace_Fin.gf └── swedish │ ├── PeaceCat_Swe.gf │ ├── PeaceLexCommon_Swe.gf │ ├── PeaceLexExt_Swe.gf │ ├── PeacePhrases_Swe.gf │ ├── PeaceSpoken_Swe.gf │ ├── PeaceSyntax_Swe.gf │ └── Peace_Swe.gf ├── phrasebook ├── Clone.hs ├── Compile.hs ├── DisambPhrasebookEng.gf ├── DisambPhrasebookRon.gf ├── Greetings.gf ├── GreetingsBul.gf ├── GreetingsCat.gf ├── GreetingsChi.gf ├── GreetingsDan.gf ├── GreetingsDut.gf ├── GreetingsEng.gf ├── GreetingsEst.gf ├── GreetingsFin.gf ├── GreetingsFre.gf ├── GreetingsGer.gf ├── GreetingsHin.gf ├── GreetingsIta.gf ├── GreetingsJpn.gf ├── GreetingsLav.gf ├── GreetingsNor.gf ├── GreetingsPes.gf ├── GreetingsPol.gf ├── GreetingsRon.gf ├── GreetingsRus.gf ├── GreetingsSnd.gf ├── GreetingsSpa.gf ├── GreetingsSwe.gf ├── GreetingsTha.gf ├── GreetingsUrd.gf ├── Implementation.html ├── Makefile ├── Makefile2 ├── Ontology.html ├── Phrasebook.gf ├── PhrasebookBul.gf ├── PhrasebookCat.gf ├── PhrasebookChi.gf ├── PhrasebookDan.gf ├── PhrasebookDut.gf ├── PhrasebookEng.gf ├── PhrasebookEst.gf ├── PhrasebookFin.gf ├── PhrasebookFre.gf ├── PhrasebookGer.gf ├── PhrasebookHin.gf ├── PhrasebookIta.gf ├── PhrasebookJpn.gf ├── PhrasebookLav.gf ├── PhrasebookNor.gf ├── PhrasebookPes.gf ├── PhrasebookPol.gf ├── PhrasebookRon.gf ├── PhrasebookRus.gf ├── PhrasebookSnd.gf ├── PhrasebookSpa.gf ├── PhrasebookSwe.gf ├── PhrasebookTha.gf ├── PhrasebookUrd.gf ├── Sentences.gf ├── SentencesBul.gf ├── SentencesCat.gf ├── SentencesChi.gf ├── SentencesDan.gf ├── SentencesDut.gf ├── SentencesEng.gf ├── SentencesEst.gf ├── SentencesFin.gf ├── SentencesFre.gf ├── SentencesGer.gf ├── SentencesHin.gf ├── SentencesI.gf ├── SentencesIta.gf ├── SentencesJpn.gf ├── SentencesLav.gf ├── SentencesNor.gf ├── SentencesPes.gf ├── SentencesPol.gf ├── SentencesRon.gf ├── SentencesRus.gf ├── SentencesSnd.gf ├── SentencesSpa.gf ├── SentencesSwe.gf ├── SentencesTha.gf ├── SentencesUrd.gf ├── Update.hs ├── Words.gf ├── WordsBul.gf ├── WordsCat.gf ├── WordsChi.gf ├── WordsDan.gf ├── WordsDut.gf ├── WordsEng.gf ├── WordsEst.gf ├── WordsFin.gf ├── WordsFre.gf ├── WordsGer.gf ├── WordsHin.gf ├── WordsIta.gf ├── WordsJpn.gf ├── WordsLav.gf ├── WordsNor.gf ├── WordsPes.gf ├── WordsPol.gf ├── WordsRon.gf ├── WordsRus.gf ├── WordsSnd.gf ├── WordsSpa.gf ├── WordsSwe.gf ├── WordsTha.gf ├── WordsUrd.gf ├── add_greetings.gfupdate ├── doc-phrasebook.html ├── doc-phrasebook.txt ├── help-phrasebook.html ├── help-phrasebook.txt ├── missing.txt ├── pgraph.png ├── picpic.jpg ├── testScript.gfs ├── thai.png └── www │ ├── old-phrasebook.html │ ├── phrasebook.css │ ├── phrasebook.js │ └── support.js ├── proofs └── Prop.gf ├── py-bindings ├── Makefile ├── PyGF.hsc ├── example.rst ├── gfmodule.c ├── lgpl-3.0.txt ├── pygf.h └── test.py ├── query-converter ├── .ghci ├── .gitignore ├── Algebra.hs ├── AlgebraTree.hs ├── Converter.hs ├── Design.hs ├── Fundep.hs ├── GQL │ ├── GQL.cf │ ├── README.md │ ├── ex0.gql │ └── ex1.gql ├── JSON.bnf ├── KeywordRelAlgebra.bnf ├── Makefile ├── MinSQL.bnf ├── MinSQL.hs ├── Natural.hs ├── OldToXML.hs ├── OptimizeAlgebra.hs ├── PrintXPath.hs ├── QConv.hs ├── QConvCGI.hs ├── README ├── RelAlgebra.bnf ├── Relation.hs ├── Relation2XML.hs ├── SQLCompiler.hs ├── Setup.hs ├── ValidateXML.hs ├── Viewer.hs ├── XML.bnf ├── XPath.hs ├── alg-example.png ├── countries.sql ├── countries.tsv ├── course.sql ├── dict.xml ├── edu.txt ├── er-example.png ├── fd-ex.txt ├── gf-grammars │ ├── Countries.gf │ ├── CountriesEng.gf │ ├── RelQuery.gf │ └── RelQueryEng.gf ├── grammars │ ├── Education.gf │ ├── EducationEng.gf │ ├── Modelling.gf │ ├── ModellingER.gf │ ├── ModellingEng.gf │ ├── ModellingSwe.gf │ ├── Relational.gf │ ├── RelationalEng.gf │ └── countries │ │ ├── Countries.gf │ │ ├── CountriesEng.gf │ │ ├── CountriesSQL.gf │ │ ├── CountriesSwe.gf │ │ ├── GFSQLShell.hs │ │ ├── GFSQLShell.java │ │ └── gf_sql_shell.py ├── index.html ├── mvd-ex.txt ├── mvd1-ex.txt ├── qconv.cabal ├── v1MinSQL.bnf ├── webapp │ ├── .gitignore │ ├── Main.hs │ ├── Makefile │ ├── Setup.hs │ ├── index.html │ ├── libs │ │ └── highlight.js │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.ru.md │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ ├── agate.css │ │ │ ├── androidstudio.css │ │ │ ├── arduino-light.css │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atelier-cave-dark.css │ │ │ ├── atelier-cave-light.css │ │ │ ├── atelier-dune-dark.css │ │ │ ├── atelier-dune-light.css │ │ │ ├── atelier-estuary-dark.css │ │ │ ├── atelier-estuary-light.css │ │ │ ├── atelier-forest-dark.css │ │ │ ├── atelier-forest-light.css │ │ │ ├── atelier-heath-dark.css │ │ │ ├── atelier-heath-light.css │ │ │ ├── atelier-lakeside-dark.css │ │ │ ├── atelier-lakeside-light.css │ │ │ ├── atelier-plateau-dark.css │ │ │ ├── atelier-plateau-light.css │ │ │ ├── atelier-savanna-dark.css │ │ │ ├── atelier-savanna-light.css │ │ │ ├── atelier-seaside-dark.css │ │ │ ├── atelier-seaside-light.css │ │ │ ├── atelier-sulphurpool-dark.css │ │ │ ├── atelier-sulphurpool-light.css │ │ │ ├── brown-paper.css │ │ │ ├── brown-papersq.png │ │ │ ├── codepen-embed.css │ │ │ ├── color-brewer.css │ │ │ ├── dark.css │ │ │ ├── darkula.css │ │ │ ├── default.css │ │ │ ├── docco.css │ │ │ ├── far.css │ │ │ ├── foundation.css │ │ │ ├── github-gist.css │ │ │ ├── github.css │ │ │ ├── googlecode.css │ │ │ ├── grayscale.css │ │ │ ├── hopscotch.css │ │ │ ├── hybrid.css │ │ │ ├── idea.css │ │ │ ├── ir-black.css │ │ │ ├── kimbie.dark.css │ │ │ ├── kimbie.light.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai-sublime.css │ │ │ ├── monokai.css │ │ │ ├── obsidian.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pojoaque.css │ │ │ ├── pojoaque.jpg │ │ │ ├── railscasts.css │ │ │ ├── rainbow.css │ │ │ ├── school-book.css │ │ │ ├── school-book.png │ │ │ ├── solarized-dark.css │ │ │ ├── solarized-light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── tomorrow-night.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── xcode.css │ │ │ └── zenburn.css │ ├── qconv-webapp.cabal │ ├── stack.yaml │ └── style.css ├── www │ ├── ersyntax.html │ ├── index.html │ ├── loading.gif │ ├── popout-32x32.png │ ├── qconv-a.html │ ├── qconv-enf.html │ ├── qconv-er.html │ ├── qconv-i.html │ ├── qconv-nf.html │ ├── qconv-xml.html │ ├── qconv.cgi │ ├── qconv.css │ └── qconv.js ├── xpath-test.txt └── xpath_Makefile ├── query ├── LexQuery.gf ├── LexQueryEng.gf ├── LexQueryFre.gf ├── LexQuerySwe.gf ├── Query.gf ├── QueryEng.gf ├── QueryFre.gf ├── QueryI.gf ├── QuerySwe.gf ├── README ├── TestQuery.gf ├── TestQueryEng.gf ├── TestQuerySwe.gf ├── newquery │ ├── Countries.gf │ ├── CountriesEng.gf │ ├── CountriesSQL.gf │ └── CountriesSwe.gf ├── small │ ├── Makefile │ ├── Query.gf │ ├── QueryEng.gf │ ├── QueryFin.gf │ ├── QueryFre.gf │ ├── QueryGer.gf │ ├── QueryIta.gf │ ├── QuerySwe.gf │ ├── README │ ├── patentsQuery │ │ ├── LexQueryPats.gf │ │ ├── LexQueryPatsEng.gf │ │ ├── LexQueryPatsFre.gf │ │ ├── QueryPats.gf │ │ ├── QueryPatsEng.gf │ │ ├── QueryPatsFre.gf │ │ └── QueryProton.gf │ ├── tests.gfs │ └── treebank.txt ├── test.gfs └── test.txt ├── racket-bindings ├── .gitignore ├── README.md ├── example.rkt └── gf │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── bindings.rkt │ ├── expr.rkt │ ├── info.rkt │ ├── main.rkt │ ├── pgf.rkt │ └── scribblings │ └── gf.scrbl ├── sammie ├── ExtSammie.gf ├── ParamSammie.gf ├── ParamSammieEng.gf ├── ParamSammieFin.gf ├── ParamSammieFre.gf ├── ParamSammieGer.gf ├── ParamSammieSpa.gf ├── ParamSammieSwe.gf ├── Sammie.gf ├── SammieEng.gf ├── SammieEng1.gf ├── SammieFin.gf ├── SammieFre.gf ├── SammieGer.gf ├── SammieGer2.gf ├── SammieI.gf ├── SammieSpa.gf └── SammieSwe.gf ├── smultron ├── .DS_Store ├── ConvertEng.hs ├── HelperFuns.hs ├── Idents.hs ├── Monad.hs ├── README ├── SmultronFormat.hs ├── data │ └── nonsense_data_in_smultron_format.xml └── trees │ └── .DS_Store ├── testsuite ├── README.md ├── german-disco.txt ├── miniresource.gfs ├── resource.gfs ├── resource.gfs.gold └── wide-coverage.gfs ├── three-words ├── Three.gf └── ThreeEng.gf ├── trigram ├── Shaw.gf ├── ShawCnc.gf ├── Trigram.gf └── TrigramCnc.gf ├── ttr-grammar ├── 0TypeCheck.hs ├── AbsTTR.hs ├── ComposOp.hs ├── ErrM.hs ├── Evaluate.hs ├── LexTTR.hs ├── ParTTR.hs ├── PrintTTR.hs ├── README ├── SkelTTR.hs ├── TTR.bnf ├── TTR2Latex.hs ├── TestTTR.hs ├── TryTTR.hs ├── TypeCheck.hs ├── ex1.ttr ├── ex2.pdf ├── ex2.ttr ├── ex3.ttr ├── ex4.ttr ├── ex6.ttr ├── ex8.ttr ├── ttr-typesystem.pdf └── ttr-typesystem.tex ├── tutorial ├── calculator │ ├── Calculator.gf │ ├── CalculatorC.gf │ ├── CalculatorE.gf │ ├── CalculatorJ.gf │ └── CalculatorP.gf ├── embedded │ ├── Makefile │ ├── Query.gf │ ├── QueryEng.gf │ ├── QuerySpa.gf │ ├── TransferDef.hs │ └── TransferLoop.hs ├── food │ ├── Food.gf │ ├── FoodEng.gf │ ├── FoodIta.gf │ └── food.cf ├── foods │ ├── Foods.gf │ ├── FoodsEng.gf │ └── FoodsIta.gf ├── hello │ ├── Hello.gf │ ├── HelloEng.gf │ ├── HelloFin.gf │ ├── HelloIta.gf │ └── hello.gfs ├── old │ └── semantics │ │ ├── Answer.hs │ │ ├── AnswerBase.hs │ │ ├── Base.gf │ │ ├── BaseEng.gf │ │ ├── BaseI.gf │ │ ├── BaseIEng.gf │ │ ├── BaseSwe.gf │ │ ├── GSyntax.hs │ │ ├── LexBase.gf │ │ ├── LexBaseEng.gf │ │ ├── LexBaseSwe.gf │ │ ├── Logic.hs │ │ ├── SemBase.hs │ │ └── Top.hs ├── resource-foods │ ├── ExtFoods.gf │ ├── ExtFoodsEng.gf │ ├── ExtFoodsFin.gf │ ├── ExtFoodsGer.gf │ ├── ExtFoodsI.gf │ ├── Foods.gf │ ├── FoodsEng.gf │ ├── FoodsEni.gf │ ├── FoodsFin.gf │ ├── FoodsFre.gf │ ├── FoodsGer.gf │ ├── FoodsI.gf │ ├── FoodsIta.gf │ ├── FoodsSwe.gf │ ├── LexFoods.gf │ ├── LexFoodsEng.gf │ ├── LexFoodsFin.gf │ ├── LexFoodsFre.gf │ ├── LexFoodsGer.gf │ ├── LexFoodsIta.gf │ └── LexFoodsSwe.gf ├── smart │ ├── House.gf │ ├── HouseEng.gf │ ├── LexSmart.gf │ ├── LexSmartSwe.gf │ ├── Smart.gf │ ├── SmartEng.gf │ ├── SmartFre.gf │ ├── SmartI.gf │ └── SmartSwe.gf └── syntax │ ├── Grammar.gf │ ├── GrammarEng.gf │ ├── GrammarIta.gf │ ├── MorphoEng.gf │ ├── MorphoIta.gf │ ├── Syntax.gf │ ├── SyntaxEng.gf │ ├── SyntaxIta.gf │ ├── Test.gf │ ├── TestEng.gf │ └── TestIta.gf ├── typetheory ├── Donkey.gf ├── DonkeyEng.gf ├── README ├── Types.gf └── TypesSymb.gf ├── ud2gf ├── GetConfig.hs ├── Makefile ├── README ├── Translate.hs ├── TreeConv.hs ├── UD2GF.hs ├── UDTranslate.gf ├── UDTranslate.labels ├── UDTranslateEng.gf ├── UDTranslateEng.labels ├── UDTranslateFin.gf ├── UDTranslateFin.labels ├── UDTranslateFunctor.gf ├── UDTranslateSwe.gf └── UDTranslateSwe.labels ├── weather_qa ├── README ├── city.list.json ├── error_messages.py ├── grammar │ ├── abstract │ │ ├── Locations.gf │ │ ├── WeatherConditions.gf │ │ └── WeatherFact.gf │ ├── afrikaans │ │ ├── LocationsAfr.gf │ │ ├── WeatherConditionsAfr.gf │ │ ├── WeatherFactAfrQ.gf │ │ ├── WeatherFactAfrR.gf │ │ └── WeatherResAfr.gf │ ├── english │ │ ├── LocationsEng.gf │ │ ├── WeatherConditionsEng.gf │ │ ├── WeatherFactEngQ.gf │ │ ├── WeatherFactEngR.gf │ │ └── WeatherResEng.gf │ └── sepedi │ │ ├── LocationsNso.gf │ │ ├── WeatherConditionsNso.gf │ │ ├── WeatherFactNsoQ.gf │ │ ├── WeatherFactNsoR.gf │ │ └── WeatherResNso.gf ├── make_pgf.sh ├── openweathermap.py ├── qa.py ├── qa_utils.py └── weather.py └── zork ├── Zork.gf ├── ZorkEng.gf └── ZorkMar.gf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/.gitignore -------------------------------------------------------------------------------- /AMR/AMR-to-text/amrs/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | 3 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/lexicons/propbank/frames/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml 2 | *.dtd 3 | 4 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/lexicons/translator/.gitignore: -------------------------------------------------------------------------------- 1 | *.gf 2 | *.gfo 3 | 4 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/.gitignore: -------------------------------------------------------------------------------- 1 | .settings 2 | .DS_Store 3 | bin/ 4 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/out/semeval/.gitignore: -------------------------------------------------------------------------------- 1 | *-amrs.txt 2 | *.log 3 | 4 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/out/semeval/gf_stop.sh: -------------------------------------------------------------------------------- 1 | kill $(pgrep gf) 2 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/out/semeval/out/dryrun/.gitignore: -------------------------------------------------------------------------------- 1 | calc_bleu.py 2 | original.txt 3 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/out/semeval/out/evaluation/.gitignore: -------------------------------------------------------------------------------- 1 | *-extended.txt 2 | -------------------------------------------------------------------------------- /AMR/AMR-to-text/tregex/out/tests/test.sh: -------------------------------------------------------------------------------- 1 | gf --run < TestTrees.gfs > output.txt 2 | -------------------------------------------------------------------------------- /AMR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/AMR/README.md -------------------------------------------------------------------------------- /AMR/text-to-AMR/README.md: -------------------------------------------------------------------------------- 1 | TODO 2 | -------------------------------------------------------------------------------- /RDF/RDF.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/RDF/RDF.gf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/README.md -------------------------------------------------------------------------------- /SUMO/Basic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Basic.gf -------------------------------------------------------------------------------- /SUMO/BasicBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BasicBul.gf -------------------------------------------------------------------------------- /SUMO/BasicEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BasicEng.gf -------------------------------------------------------------------------------- /SUMO/BasicFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BasicFre.gf -------------------------------------------------------------------------------- /SUMO/BasicRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BasicRon.gf -------------------------------------------------------------------------------- /SUMO/BasicSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BasicSwe.gf -------------------------------------------------------------------------------- /SUMO/Birds.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Birds.gf -------------------------------------------------------------------------------- /SUMO/BirdsBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BirdsBul.gf -------------------------------------------------------------------------------- /SUMO/BirdsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BirdsEng.gf -------------------------------------------------------------------------------- /SUMO/BirdsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/BirdsSwe.gf -------------------------------------------------------------------------------- /SUMO/Communications.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Communications.gf -------------------------------------------------------------------------------- /SUMO/Economy.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Economy.gf -------------------------------------------------------------------------------- /SUMO/EconomyEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EconomyEng.gf -------------------------------------------------------------------------------- /SUMO/EconomyFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EconomyFre.gf -------------------------------------------------------------------------------- /SUMO/EconomyRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EconomyRon.gf -------------------------------------------------------------------------------- /SUMO/Elements.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Elements.gf -------------------------------------------------------------------------------- /SUMO/ElementsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/ElementsEng.gf -------------------------------------------------------------------------------- /SUMO/Engineering.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Engineering.gf -------------------------------------------------------------------------------- /SUMO/EngineeringEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EngineeringEng.gf -------------------------------------------------------------------------------- /SUMO/EngineeringFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EngineeringFre.gf -------------------------------------------------------------------------------- /SUMO/EngineeringRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/EngineeringRon.gf -------------------------------------------------------------------------------- /SUMO/Geography.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Geography.gf -------------------------------------------------------------------------------- /SUMO/GeographyEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/GeographyEng.gf -------------------------------------------------------------------------------- /SUMO/Government.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Government.gf -------------------------------------------------------------------------------- /SUMO/Merge.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Merge.gf -------------------------------------------------------------------------------- /SUMO/MergeBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MergeBul.gf -------------------------------------------------------------------------------- /SUMO/MergeEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MergeEng.gf -------------------------------------------------------------------------------- /SUMO/MergeFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MergeFre.gf -------------------------------------------------------------------------------- /SUMO/MergeRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MergeRon.gf -------------------------------------------------------------------------------- /SUMO/MergeSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MergeSwe.gf -------------------------------------------------------------------------------- /SUMO/Military.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Military.gf -------------------------------------------------------------------------------- /SUMO/Mondial.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Mondial.gf -------------------------------------------------------------------------------- /SUMO/MondialEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/MondialEng.gf -------------------------------------------------------------------------------- /SUMO/QoSontology.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/QoSontology.gf -------------------------------------------------------------------------------- /SUMO/QoSontologyEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/QoSontologyEng.gf -------------------------------------------------------------------------------- /SUMO/QoSontologyFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/QoSontologyFre.gf -------------------------------------------------------------------------------- /SUMO/QoSontologyRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/QoSontologyRon.gf -------------------------------------------------------------------------------- /SUMO/RGLExt/DictLang.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/RGLExt/DictLang.gf -------------------------------------------------------------------------------- /SUMO/SUMO.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMO.gf -------------------------------------------------------------------------------- /SUMO/SUMOBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMOBul.gf -------------------------------------------------------------------------------- /SUMO/SUMOEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMOEng.gf -------------------------------------------------------------------------------- /SUMO/SUMOFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMOFre.gf -------------------------------------------------------------------------------- /SUMO/SUMORon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMORon.gf -------------------------------------------------------------------------------- /SUMO/SUMOSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/SUMOSwe.gf -------------------------------------------------------------------------------- /SUMO/TPTP/EconomyAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/EconomyAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/GeographyAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/GeographyAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/MergeAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/MergeAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/MergeLemAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/MergeLemAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/MergePredAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/MergePredAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/MilitaryAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/MilitaryAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/WMDAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/WMDAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/WMDLemAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/WMDLemAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/WMDPredAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/WMDPredAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/WMDSubAttAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/WMDSubAttAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/elementsAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/elementsAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/mondialAx.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/mondialAx.p -------------------------------------------------------------------------------- /SUMO/TPTP/test1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/test1.p -------------------------------------------------------------------------------- /SUMO/TPTP/test2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/test2.p -------------------------------------------------------------------------------- /SUMO/TPTP/test3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/TPTP/test3.p -------------------------------------------------------------------------------- /SUMO/Transportation.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/Transportation.gf -------------------------------------------------------------------------------- /SUMO/WMD.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/WMD.gf -------------------------------------------------------------------------------- /SUMO/axioms/Economy.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/Economy.gft -------------------------------------------------------------------------------- /SUMO/axioms/Either.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/Either.gft -------------------------------------------------------------------------------- /SUMO/axioms/Merge.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/Merge.gft -------------------------------------------------------------------------------- /SUMO/axioms/MergeP.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/MergeP.gft -------------------------------------------------------------------------------- /SUMO/axioms/WMD.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/WMD.gft -------------------------------------------------------------------------------- /SUMO/axioms/WMDP.gft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SUMO/axioms/WMDP.gft -------------------------------------------------------------------------------- /SUMO/axioms/engineeringHiO.gft: -------------------------------------------------------------------------------- 1 | 2 | PartialOrderingRelation ? (\x,y -> abstractPart x y) 3 | -------------------------------------------------------------------------------- /SweCcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SweCcn/README.md -------------------------------------------------------------------------------- /SweCcn/cxg/CxnSweAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SweCcn/cxg/CxnSweAbs.gf -------------------------------------------------------------------------------- /SweCcn/cxg/CxnSweCnc.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SweCcn/cxg/CxnSweCnc.gf -------------------------------------------------------------------------------- /SweCcn/cxg/CxnSweRes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/SweCcn/cxg/CxnSweRes.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryBul.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryCat.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryChi.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryDan.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryDut.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryEng.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryFin.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryFre.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryGer.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryIta.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryNor.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryRon.gf -------------------------------------------------------------------------------- /YAQL/BuildQueryRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQueryRus.gf -------------------------------------------------------------------------------- /YAQL/BuildQuerySpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQuerySpa.gf -------------------------------------------------------------------------------- /YAQL/BuildQuerySwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/BuildQuerySwe.gf -------------------------------------------------------------------------------- /YAQL/NumeralHaskell.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/NumeralHaskell.gf -------------------------------------------------------------------------------- /YAQL/NumeralSPARQL.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/NumeralSPARQL.gf -------------------------------------------------------------------------------- /YAQL/QueryArithm.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryArithm.gf -------------------------------------------------------------------------------- /YAQL/QueryArithmChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryArithmChi.gf -------------------------------------------------------------------------------- /YAQL/QueryArithmEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryArithmEng.gf -------------------------------------------------------------------------------- /YAQL/QueryArithmGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryArithmGer.gf -------------------------------------------------------------------------------- /YAQL/QueryArithmSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryArithmSwe.gf -------------------------------------------------------------------------------- /YAQL/QueryPhil.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryPhil.gf -------------------------------------------------------------------------------- /YAQL/QueryPhilEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryPhilEng.gf -------------------------------------------------------------------------------- /YAQL/QueryPhilFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryPhilFin.gf -------------------------------------------------------------------------------- /YAQL/QueryPhilFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryPhilFre.gf -------------------------------------------------------------------------------- /YAQL/QueryPhilSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryPhilSwe.gf -------------------------------------------------------------------------------- /YAQL/QueryProton.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryProton.gf -------------------------------------------------------------------------------- /YAQL/QueryProtonEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/QueryProtonEng.gf -------------------------------------------------------------------------------- /YAQL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/README -------------------------------------------------------------------------------- /YAQL/ResHaskell.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/ResHaskell.gf -------------------------------------------------------------------------------- /YAQL/ResSPARQL.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/ResSPARQL.gf -------------------------------------------------------------------------------- /YAQL/YAQL.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQL.gf -------------------------------------------------------------------------------- /YAQL/YAQL1SPARQL.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQL1SPARQL.gf -------------------------------------------------------------------------------- /YAQL/YAQLBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLBul.gf -------------------------------------------------------------------------------- /YAQL/YAQLCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLCat.gf -------------------------------------------------------------------------------- /YAQL/YAQLChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLChi.gf -------------------------------------------------------------------------------- /YAQL/YAQLDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLDan.gf -------------------------------------------------------------------------------- /YAQL/YAQLDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLDut.gf -------------------------------------------------------------------------------- /YAQL/YAQLEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLEng.gf -------------------------------------------------------------------------------- /YAQL/YAQLFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLFin.gf -------------------------------------------------------------------------------- /YAQL/YAQLFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLFre.gf -------------------------------------------------------------------------------- /YAQL/YAQLFunctor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLFunctor.gf -------------------------------------------------------------------------------- /YAQL/YAQLGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLGer.gf -------------------------------------------------------------------------------- /YAQL/YAQLHaskell.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLHaskell.gf -------------------------------------------------------------------------------- /YAQL/YAQLHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLHeb.gf -------------------------------------------------------------------------------- /YAQL/YAQLIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLIta.gf -------------------------------------------------------------------------------- /YAQL/YAQLNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLNor.gf -------------------------------------------------------------------------------- /YAQL/YAQLRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLRon.gf -------------------------------------------------------------------------------- /YAQL/YAQLRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLRus.gf -------------------------------------------------------------------------------- /YAQL/YAQLSPARQL.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLSPARQL.gf -------------------------------------------------------------------------------- /YAQL/YAQLSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLSpa.gf -------------------------------------------------------------------------------- /YAQL/YAQLSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/YAQLSwe.gf -------------------------------------------------------------------------------- /YAQL/arithm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/arithm.sh -------------------------------------------------------------------------------- /YAQL/mini/MathQuery.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/MathQuery.gf -------------------------------------------------------------------------------- /YAQL/mini/Query.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/Query.gf -------------------------------------------------------------------------------- /YAQL/mini/QueryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/QueryEng.gf -------------------------------------------------------------------------------- /YAQL/mini/QueryHs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/QueryHs.gf -------------------------------------------------------------------------------- /YAQL/mini/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/README -------------------------------------------------------------------------------- /YAQL/mini/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/YAQL/mini/query.sh -------------------------------------------------------------------------------- /animals/Animals.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/Animals.gf -------------------------------------------------------------------------------- /animals/AnimalsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/AnimalsEng.gf -------------------------------------------------------------------------------- /animals/AnimalsFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/AnimalsFre.gf -------------------------------------------------------------------------------- /animals/AnimalsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/AnimalsSwe.gf -------------------------------------------------------------------------------- /animals/Questions.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/Questions.gf -------------------------------------------------------------------------------- /animals/QuestionsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/QuestionsEng.gf -------------------------------------------------------------------------------- /animals/QuestionsFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/QuestionsFre.gf -------------------------------------------------------------------------------- /animals/QuestionsI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/QuestionsI.gf -------------------------------------------------------------------------------- /animals/QuestionsI.gfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/QuestionsI.gfe -------------------------------------------------------------------------------- /animals/QuestionsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/animals/QuestionsSwe.gf -------------------------------------------------------------------------------- /attempto/Attempto.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/Attempto.gf -------------------------------------------------------------------------------- /attempto/Attempto1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/Attempto1.gf -------------------------------------------------------------------------------- /attempto/AttemptoDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoDan.gf -------------------------------------------------------------------------------- /attempto/AttemptoEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoEng.gf -------------------------------------------------------------------------------- /attempto/AttemptoFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoFin.gf -------------------------------------------------------------------------------- /attempto/AttemptoFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoFre.gf -------------------------------------------------------------------------------- /attempto/AttemptoGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoGer.gf -------------------------------------------------------------------------------- /attempto/AttemptoI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoI.gf -------------------------------------------------------------------------------- /attempto/AttemptoIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoIta.gf -------------------------------------------------------------------------------- /attempto/AttemptoSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoSwe.gf -------------------------------------------------------------------------------- /attempto/AttemptoUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/AttemptoUrd.gf -------------------------------------------------------------------------------- /attempto/LexAttempto.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/LexAttempto.gf -------------------------------------------------------------------------------- /attempto/Symbols.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/Symbols.gf -------------------------------------------------------------------------------- /attempto/SymbolsC.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/attempto/SymbolsC.gf -------------------------------------------------------------------------------- /bronzeage/Bronzeage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/Bronzeage.gf -------------------------------------------------------------------------------- /bronzeage/BronzeageI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/BronzeageI.gf -------------------------------------------------------------------------------- /bronzeage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/Makefile -------------------------------------------------------------------------------- /bronzeage/Swadesh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/Swadesh.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshAra.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshBul.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshCat.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshDan.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshEng.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshFin.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshFre.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshGer.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshI.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshIta.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshNor.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshPol.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshRon.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshRus.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshSpa.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshSwe.gf -------------------------------------------------------------------------------- /bronzeage/SwadeshUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/bronzeage/SwadeshUrd.gf -------------------------------------------------------------------------------- /c-bindings/PGFFFI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/PGFFFI.hs -------------------------------------------------------------------------------- /c-bindings/gf_lexing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/gf_lexing.c -------------------------------------------------------------------------------- /c-bindings/gf_lexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/gf_lexing.h -------------------------------------------------------------------------------- /c-bindings/gfctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/gfctest.c -------------------------------------------------------------------------------- /c-bindings/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/gpl-3.0.txt -------------------------------------------------------------------------------- /c-bindings/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/lgpl-2.1.txt -------------------------------------------------------------------------------- /c-bindings/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/lgpl-3.0.txt -------------------------------------------------------------------------------- /c-bindings/pgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/c-bindings/pgf.h -------------------------------------------------------------------------------- /cade-2011/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/Dockerfile -------------------------------------------------------------------------------- /cade-2011/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/Makefile -------------------------------------------------------------------------------- /cade-2011/Prop.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/Prop.gf -------------------------------------------------------------------------------- /cade-2011/Prop.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/Prop.hs -------------------------------------------------------------------------------- /cade-2011/PropENF.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropENF.gf -------------------------------------------------------------------------------- /cade-2011/PropEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropEng.gf -------------------------------------------------------------------------------- /cade-2011/PropFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropFin.gf -------------------------------------------------------------------------------- /cade-2011/PropFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropFre.gf -------------------------------------------------------------------------------- /cade-2011/PropGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropGer.gf -------------------------------------------------------------------------------- /cade-2011/PropI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropI.gf -------------------------------------------------------------------------------- /cade-2011/PropLatex.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropLatex.gf -------------------------------------------------------------------------------- /cade-2011/PropPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropPor.gf -------------------------------------------------------------------------------- /cade-2011/PropStr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropStr.gf -------------------------------------------------------------------------------- /cade-2011/PropSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/PropSwe.gf -------------------------------------------------------------------------------- /cade-2011/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/README.md -------------------------------------------------------------------------------- /cade-2011/Trans.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/Trans.hs -------------------------------------------------------------------------------- /cade-2011/TransProp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/TransProp.hs -------------------------------------------------------------------------------- /cade-2011/cade.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/cade.cabal -------------------------------------------------------------------------------- /cade-2011/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/cade-2011/stack.yaml -------------------------------------------------------------------------------- /catgram/CatGram.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/catgram/CatGram.gf -------------------------------------------------------------------------------- /catgram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/catgram/README.md -------------------------------------------------------------------------------- /computer/Computer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/Computer.gf -------------------------------------------------------------------------------- /computer/ComputerEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/ComputerEng.gf -------------------------------------------------------------------------------- /computer/ComputerFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/ComputerFin.gf -------------------------------------------------------------------------------- /computer/ComputerSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/ComputerSwe.gf -------------------------------------------------------------------------------- /computer/Dator.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/Dator.gf -------------------------------------------------------------------------------- /computer/DatorEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/DatorEng.gf -------------------------------------------------------------------------------- /computer/DatorFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/DatorFin.gf -------------------------------------------------------------------------------- /computer/DatorSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/computer/DatorSwe.gf -------------------------------------------------------------------------------- /dates/Dates.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/dates/Dates.gf -------------------------------------------------------------------------------- /dates/DatesEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/dates/DatesEng.gf -------------------------------------------------------------------------------- /dates/DatesFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/dates/DatesFin.gf -------------------------------------------------------------------------------- /dates/DatesFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/dates/DatesFre.gf -------------------------------------------------------------------------------- /dates/DatesSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/dates/DatesSwe.gf -------------------------------------------------------------------------------- /dictionary/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discourse/Discourse.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/discourse/Discourse.gf -------------------------------------------------------------------------------- /discourse/particles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/discourse/particles.txt -------------------------------------------------------------------------------- /eaglesconv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/eaglesconv/README -------------------------------------------------------------------------------- /eaglesconv/run_conv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/eaglesconv/run_conv.sh -------------------------------------------------------------------------------- /experiments/Dep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/experiments/Dep.gf -------------------------------------------------------------------------------- /experiments/Dep.labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/experiments/Dep.labels -------------------------------------------------------------------------------- /experiments/DepEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/experiments/DepEng.gf -------------------------------------------------------------------------------- /extmini/Grammar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/Grammar.gf -------------------------------------------------------------------------------- /extmini/GrammarCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/GrammarCmn.gf -------------------------------------------------------------------------------- /extmini/GrammarEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/GrammarEng.gf -------------------------------------------------------------------------------- /extmini/GrammarIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/GrammarIta.gf -------------------------------------------------------------------------------- /extmini/Lang.gf: -------------------------------------------------------------------------------- 1 | abstract Lang = Grammar, Lexicon ; 2 | -------------------------------------------------------------------------------- /extmini/LangCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LangCmn.gf -------------------------------------------------------------------------------- /extmini/LangEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LangEng.gf -------------------------------------------------------------------------------- /extmini/LangIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LangIta.gf -------------------------------------------------------------------------------- /extmini/Lexicon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/Lexicon.gf -------------------------------------------------------------------------------- /extmini/LexiconCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LexiconCmn.gf -------------------------------------------------------------------------------- /extmini/LexiconEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LexiconEng.gf -------------------------------------------------------------------------------- /extmini/LexiconIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/LexiconIta.gf -------------------------------------------------------------------------------- /extmini/ParadigmsCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ParadigmsCmn.gf -------------------------------------------------------------------------------- /extmini/ParadigmsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ParadigmsEng.gf -------------------------------------------------------------------------------- /extmini/ParadigmsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ParadigmsIta.gf -------------------------------------------------------------------------------- /extmini/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/README -------------------------------------------------------------------------------- /extmini/ResCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ResCmn.gf -------------------------------------------------------------------------------- /extmini/ResEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ResEng.gf -------------------------------------------------------------------------------- /extmini/ResIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/ResIta.gf -------------------------------------------------------------------------------- /extmini/Syntax.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/Syntax.gf -------------------------------------------------------------------------------- /extmini/SyntaxCmn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/SyntaxCmn.gf -------------------------------------------------------------------------------- /extmini/SyntaxEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/SyntaxEng.gf -------------------------------------------------------------------------------- /extmini/SyntaxIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/SyntaxIta.gf -------------------------------------------------------------------------------- /extmini/compsyntax.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/extmini/compsyntax.gfs -------------------------------------------------------------------------------- /foods/CharactersGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/CharactersGla.gf -------------------------------------------------------------------------------- /foods/CharactersGle.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/CharactersGle.gf -------------------------------------------------------------------------------- /foods/Foods.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/Foods.gf -------------------------------------------------------------------------------- /foods/FoodsAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsAfr.gf -------------------------------------------------------------------------------- /foods/FoodsAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsAmh.gf -------------------------------------------------------------------------------- /foods/FoodsBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsBul.gf -------------------------------------------------------------------------------- /foods/FoodsCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsCat.gf -------------------------------------------------------------------------------- /foods/FoodsChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsChi.gf -------------------------------------------------------------------------------- /foods/FoodsCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsCze.gf -------------------------------------------------------------------------------- /foods/FoodsDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsDut.gf -------------------------------------------------------------------------------- /foods/FoodsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsEng.gf -------------------------------------------------------------------------------- /foods/FoodsEpo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsEpo.gf -------------------------------------------------------------------------------- /foods/FoodsFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsFin.gf -------------------------------------------------------------------------------- /foods/FoodsFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsFre.gf -------------------------------------------------------------------------------- /foods/FoodsGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsGer.gf -------------------------------------------------------------------------------- /foods/FoodsGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsGla.gf -------------------------------------------------------------------------------- /foods/FoodsGle.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsGle.gf -------------------------------------------------------------------------------- /foods/FoodsHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsHeb.gf -------------------------------------------------------------------------------- /foods/FoodsHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsHin.gf -------------------------------------------------------------------------------- /foods/FoodsI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsI.gf -------------------------------------------------------------------------------- /foods/FoodsIce.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsIce.gf -------------------------------------------------------------------------------- /foods/FoodsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsIta.gf -------------------------------------------------------------------------------- /foods/FoodsJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsJpn.gf -------------------------------------------------------------------------------- /foods/FoodsLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsLat.gf -------------------------------------------------------------------------------- /foods/FoodsLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsLav.gf -------------------------------------------------------------------------------- /foods/FoodsMkd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsMkd.gf -------------------------------------------------------------------------------- /foods/FoodsMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsMlt.gf -------------------------------------------------------------------------------- /foods/FoodsMon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsMon.gf -------------------------------------------------------------------------------- /foods/FoodsNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsNep.gf -------------------------------------------------------------------------------- /foods/FoodsOri.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsOri.gf -------------------------------------------------------------------------------- /foods/FoodsPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsPes.gf -------------------------------------------------------------------------------- /foods/FoodsPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsPor.gf -------------------------------------------------------------------------------- /foods/FoodsRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsRon.gf -------------------------------------------------------------------------------- /foods/FoodsSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsSpa.gf -------------------------------------------------------------------------------- /foods/FoodsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsSwe.gf -------------------------------------------------------------------------------- /foods/FoodsTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsTha.gf -------------------------------------------------------------------------------- /foods/FoodsTsn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsTsn.gf -------------------------------------------------------------------------------- /foods/FoodsTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsTur.gf -------------------------------------------------------------------------------- /foods/FoodsUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/FoodsUrd.gf -------------------------------------------------------------------------------- /foods/LexFoods.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoods.gf -------------------------------------------------------------------------------- /foods/LexFoodsCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsCat.gf -------------------------------------------------------------------------------- /foods/LexFoodsFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsFin.gf -------------------------------------------------------------------------------- /foods/LexFoodsGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsGer.gf -------------------------------------------------------------------------------- /foods/LexFoodsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsIta.gf -------------------------------------------------------------------------------- /foods/LexFoodsLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsLat.gf -------------------------------------------------------------------------------- /foods/LexFoodsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/LexFoodsSwe.gf -------------------------------------------------------------------------------- /foods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/Makefile -------------------------------------------------------------------------------- /foods/MutationsGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/MutationsGla.gf -------------------------------------------------------------------------------- /foods/MutationsGle.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/MutationsGle.gf -------------------------------------------------------------------------------- /foods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/README -------------------------------------------------------------------------------- /foods/ResCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/ResCze.gf -------------------------------------------------------------------------------- /foods/transFoodsHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/foods/transFoodsHin.gf -------------------------------------------------------------------------------- /framenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/framenet/README.md -------------------------------------------------------------------------------- /framenet/lib/Targets.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/framenet/lib/Targets.gf -------------------------------------------------------------------------------- /gadt-transfer/Foods.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gadt-transfer/Foods.gf -------------------------------------------------------------------------------- /gadt-transfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gadt-transfer/Makefile -------------------------------------------------------------------------------- /gadt-transfer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gadt-transfer/README -------------------------------------------------------------------------------- /gfcc/CleanJVM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/CleanJVM.hs -------------------------------------------------------------------------------- /gfcc/Imper.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/Imper.gf -------------------------------------------------------------------------------- /gfcc/ImperC.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/ImperC.gf -------------------------------------------------------------------------------- /gfcc/ImperJVM.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/ImperJVM.gf -------------------------------------------------------------------------------- /gfcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/Makefile -------------------------------------------------------------------------------- /gfcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/README -------------------------------------------------------------------------------- /gfcc/ResImper.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/ResImper.gf -------------------------------------------------------------------------------- /gfcc/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/abs.c -------------------------------------------------------------------------------- /gfcc/complin.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/complin.bbl -------------------------------------------------------------------------------- /gfcc/complin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/complin.pdf -------------------------------------------------------------------------------- /gfcc/complin.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/complin.tex -------------------------------------------------------------------------------- /gfcc/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/factorial.c -------------------------------------------------------------------------------- /gfcc/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/fibonacci.c -------------------------------------------------------------------------------- /gfcc/gfcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/gfcc -------------------------------------------------------------------------------- /gfcc/runtime.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfcc/runtime.j -------------------------------------------------------------------------------- /gfm-format/Food.gfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfm-format/Food.gfm -------------------------------------------------------------------------------- /gfm-format/Words.gfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/gfm-format/Words.gfm -------------------------------------------------------------------------------- /graftals/Cantor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Cantor.gf -------------------------------------------------------------------------------- /graftals/Dragon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Dragon.gf -------------------------------------------------------------------------------- /graftals/Graftal.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Graftal.gf -------------------------------------------------------------------------------- /graftals/Koch.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Koch.gf -------------------------------------------------------------------------------- /graftals/Sierpinski.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Sierpinski.gf -------------------------------------------------------------------------------- /graftals/Turtle.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/graftals/Turtle.gf -------------------------------------------------------------------------------- /hammurabi/Hammurabi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hammurabi/Hammurabi.gf -------------------------------------------------------------------------------- /hammurabi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hammurabi/README.md -------------------------------------------------------------------------------- /hsk/Hsk1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/Hsk1.gf -------------------------------------------------------------------------------- /hsk/Hsk1Chi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/Hsk1Chi.gf -------------------------------------------------------------------------------- /hsk/Hsk1Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/Hsk1Eng.gf -------------------------------------------------------------------------------- /hsk/Hsk1Pinyin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/Hsk1Pinyin.gf -------------------------------------------------------------------------------- /hsk/OperHSK.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/OperHSK.hs -------------------------------------------------------------------------------- /hsk/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/hsk/notes.txt -------------------------------------------------------------------------------- /jem-math/LexMath.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/LexMath.gf -------------------------------------------------------------------------------- /jem-math/LexMathFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/LexMathFre.gf -------------------------------------------------------------------------------- /jem-math/LexMathSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/LexMathSpa.gf -------------------------------------------------------------------------------- /jem-math/LexMathSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/LexMathSwe.gf -------------------------------------------------------------------------------- /jem-math/Math.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/Math.gf -------------------------------------------------------------------------------- /jem-math/MathEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathEng.gf -------------------------------------------------------------------------------- /jem-math/MathFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathFre.gf -------------------------------------------------------------------------------- /jem-math/MathI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathI.gf -------------------------------------------------------------------------------- /jem-math/MathIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathIta.gf -------------------------------------------------------------------------------- /jem-math/MathIta1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathIta1.gf -------------------------------------------------------------------------------- /jem-math/MathSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathSpa.gf -------------------------------------------------------------------------------- /jem-math/MathSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/jem-math/MathSwe.gf -------------------------------------------------------------------------------- /letter/Letter.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/Letter.gf -------------------------------------------------------------------------------- /letter/Letter.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/Letter.pgf -------------------------------------------------------------------------------- /letter/LetterEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterEng.gf -------------------------------------------------------------------------------- /letter/LetterFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterFin.gf -------------------------------------------------------------------------------- /letter/LetterFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterFre.gf -------------------------------------------------------------------------------- /letter/LetterHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterHeb.gf -------------------------------------------------------------------------------- /letter/LetterRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterRus.gf -------------------------------------------------------------------------------- /letter/LetterSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/LetterSwe.gf -------------------------------------------------------------------------------- /letter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/Makefile -------------------------------------------------------------------------------- /letter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/letter/README -------------------------------------------------------------------------------- /lrec-tutorial/Ara.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/Ara.gf -------------------------------------------------------------------------------- /lrec-tutorial/AraAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/AraAra.gf -------------------------------------------------------------------------------- /lrec-tutorial/Arabic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/Arabic.gf -------------------------------------------------------------------------------- /lrec-tutorial/Lang.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/Lang.gf -------------------------------------------------------------------------------- /lrec-tutorial/Morpho.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/Morpho.gf -------------------------------------------------------------------------------- /lrec-tutorial/One.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/One.gf -------------------------------------------------------------------------------- /lrec-tutorial/ResIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/ResIta.gf -------------------------------------------------------------------------------- /lrec-tutorial/Zero.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/lrec-tutorial/Zero.gf -------------------------------------------------------------------------------- /mathtext/Geometry.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/Geometry.gf -------------------------------------------------------------------------------- /mathtext/GeometryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/GeometryEng.gf -------------------------------------------------------------------------------- /mathtext/GeometryFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/GeometryFre.gf -------------------------------------------------------------------------------- /mathtext/GeometryGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/GeometryGer.gf -------------------------------------------------------------------------------- /mathtext/LexLogic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LexLogic.gf -------------------------------------------------------------------------------- /mathtext/LexLogicEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LexLogicEng.gf -------------------------------------------------------------------------------- /mathtext/LexLogicFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LexLogicFre.gf -------------------------------------------------------------------------------- /mathtext/LexLogicGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LexLogicGer.gf -------------------------------------------------------------------------------- /mathtext/Logic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/Logic.gf -------------------------------------------------------------------------------- /mathtext/LogicEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LogicEng.gf -------------------------------------------------------------------------------- /mathtext/LogicFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LogicFre.gf -------------------------------------------------------------------------------- /mathtext/LogicGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LogicGer.gf -------------------------------------------------------------------------------- /mathtext/LogicI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/LogicI.gf -------------------------------------------------------------------------------- /mathtext/MathGeom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathGeom.gf -------------------------------------------------------------------------------- /mathtext/MathGeomEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathGeomEng.gf -------------------------------------------------------------------------------- /mathtext/MathGeomFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathGeomFre.gf -------------------------------------------------------------------------------- /mathtext/MathGeomGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathGeomGer.gf -------------------------------------------------------------------------------- /mathtext/MathText.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathText.gf -------------------------------------------------------------------------------- /mathtext/MathTextEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathTextEng.gf -------------------------------------------------------------------------------- /mathtext/MathTextFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathTextFre.gf -------------------------------------------------------------------------------- /mathtext/MathTextGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathTextGer.gf -------------------------------------------------------------------------------- /mathtext/MathTextI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/MathTextI.gf -------------------------------------------------------------------------------- /mathtext/Symbols.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/Symbols.gf -------------------------------------------------------------------------------- /mathtext/SymbolsX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mathtext/SymbolsX.gf -------------------------------------------------------------------------------- /messages/Messages.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/messages/Messages.gf -------------------------------------------------------------------------------- /messages/MessagesEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/messages/MessagesEng.gf -------------------------------------------------------------------------------- /messages/MessagesFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/messages/MessagesFre.gf -------------------------------------------------------------------------------- /mgl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/COPYING -------------------------------------------------------------------------------- /mgl/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/COPYING.LESSER -------------------------------------------------------------------------------- /mgl/Compile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/Compile.hs -------------------------------------------------------------------------------- /mgl/GfLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/GfLexer.py -------------------------------------------------------------------------------- /mgl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/Makefile -------------------------------------------------------------------------------- /mgl/README-AR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/README-AR -------------------------------------------------------------------------------- /mgl/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /mgl/abstract/Arith1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Arith1.gf -------------------------------------------------------------------------------- /mgl/abstract/Arith2.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Arith2.gf -------------------------------------------------------------------------------- /mgl/abstract/Fns1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Fns1.gf -------------------------------------------------------------------------------- /mgl/abstract/Fns2.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Fns2.gf -------------------------------------------------------------------------------- /mgl/abstract/Ground.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Ground.gf -------------------------------------------------------------------------------- /mgl/abstract/Limit1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Limit1.gf -------------------------------------------------------------------------------- /mgl/abstract/LinAlg1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/LinAlg1.gf -------------------------------------------------------------------------------- /mgl/abstract/LinAlg2.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/LinAlg2.gf -------------------------------------------------------------------------------- /mgl/abstract/Logic1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Logic1.gf -------------------------------------------------------------------------------- /mgl/abstract/MathBar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/MathBar.gf -------------------------------------------------------------------------------- /mgl/abstract/MinMax1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/MinMax1.gf -------------------------------------------------------------------------------- /mgl/abstract/Nums1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Nums1.gf -------------------------------------------------------------------------------- /mgl/abstract/Quant1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Quant1.gf -------------------------------------------------------------------------------- /mgl/abstract/SData1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/SData1.gf -------------------------------------------------------------------------------- /mgl/abstract/Set1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Set1.gf -------------------------------------------------------------------------------- /mgl/abstract/Test.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Test.gf -------------------------------------------------------------------------------- /mgl/abstract/Transc1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/abstract/Transc1.gf -------------------------------------------------------------------------------- /mgl/catalan/Fns1Cat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/catalan/Fns1Cat.gf -------------------------------------------------------------------------------- /mgl/catalan/MathCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/catalan/MathCat.gf -------------------------------------------------------------------------------- /mgl/catalan/Nums1Cat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/catalan/Nums1Cat.gf -------------------------------------------------------------------------------- /mgl/catalan/Set1Cat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/catalan/Set1Cat.gf -------------------------------------------------------------------------------- /mgl/catalan/TestCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/catalan/TestCat.gf -------------------------------------------------------------------------------- /mgl/english/Fns1Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/Fns1Eng.gf -------------------------------------------------------------------------------- /mgl/english/Fns2Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/Fns2Eng.gf -------------------------------------------------------------------------------- /mgl/english/MathEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/MathEng.gf -------------------------------------------------------------------------------- /mgl/english/Nums1Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/Nums1Eng.gf -------------------------------------------------------------------------------- /mgl/english/Set1Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/Set1Eng.gf -------------------------------------------------------------------------------- /mgl/english/TestEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/english/TestEng.gf -------------------------------------------------------------------------------- /mgl/finnish/Fns1Fin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/finnish/Fns1Fin.gf -------------------------------------------------------------------------------- /mgl/finnish/MathFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/finnish/MathFin.gf -------------------------------------------------------------------------------- /mgl/finnish/Nums1Fin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/finnish/Nums1Fin.gf -------------------------------------------------------------------------------- /mgl/finnish/Set1Fin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/finnish/Set1Fin.gf -------------------------------------------------------------------------------- /mgl/finnish/TestFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/finnish/TestFin.gf -------------------------------------------------------------------------------- /mgl/french/Arith1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Arith1Fre.gf -------------------------------------------------------------------------------- /mgl/french/Arith2Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Arith2Fre.gf -------------------------------------------------------------------------------- /mgl/french/Fns1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Fns1Fre.gf -------------------------------------------------------------------------------- /mgl/french/GroundFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/GroundFre.gf -------------------------------------------------------------------------------- /mgl/french/Limit1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Limit1Fre.gf -------------------------------------------------------------------------------- /mgl/french/Logic1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Logic1Fre.gf -------------------------------------------------------------------------------- /mgl/french/MathFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/MathFre.gf -------------------------------------------------------------------------------- /mgl/french/Nums1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Nums1Fre.gf -------------------------------------------------------------------------------- /mgl/french/Quant1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Quant1Fre.gf -------------------------------------------------------------------------------- /mgl/french/SData1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/SData1Fre.gf -------------------------------------------------------------------------------- /mgl/french/Set1Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/Set1Fre.gf -------------------------------------------------------------------------------- /mgl/french/TestFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/french/TestFre.gf -------------------------------------------------------------------------------- /mgl/german/Arith1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Arith1Ger.gf -------------------------------------------------------------------------------- /mgl/german/Arith2Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Arith2Ger.gf -------------------------------------------------------------------------------- /mgl/german/Fns1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Fns1Ger.gf -------------------------------------------------------------------------------- /mgl/german/GroundGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/GroundGer.gf -------------------------------------------------------------------------------- /mgl/german/Limit1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Limit1Ger.gf -------------------------------------------------------------------------------- /mgl/german/Logic1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Logic1Ger.gf -------------------------------------------------------------------------------- /mgl/german/MathGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/MathGer.gf -------------------------------------------------------------------------------- /mgl/german/Nums1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Nums1Ger.gf -------------------------------------------------------------------------------- /mgl/german/Quant1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Quant1Ger.gf -------------------------------------------------------------------------------- /mgl/german/SData1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/SData1Ger.gf -------------------------------------------------------------------------------- /mgl/german/Set1Ger.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/Set1Ger.gf -------------------------------------------------------------------------------- /mgl/german/TestGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/german/TestGer.gf -------------------------------------------------------------------------------- /mgl/hindi/Arith1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Arith1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Arith2Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Arith2Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Fns1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Fns1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/GroundHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/GroundHin.gf -------------------------------------------------------------------------------- /mgl/hindi/LexiconHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/LexiconHin.gf -------------------------------------------------------------------------------- /mgl/hindi/Limit1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Limit1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/LinAlg1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/LinAlg1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/LinAlg2Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/LinAlg2Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Logic1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Logic1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/MathBarHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/MathBarHin.gf -------------------------------------------------------------------------------- /mgl/hindi/MathHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/MathHin.gf -------------------------------------------------------------------------------- /mgl/hindi/MathHin0.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/MathHin0.gf -------------------------------------------------------------------------------- /mgl/hindi/MinMax1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/MinMax1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Nums1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Nums1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Quant1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Quant1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/SData1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/SData1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/Set1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Set1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/TestHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/TestHin.gf -------------------------------------------------------------------------------- /mgl/hindi/Transc1Hin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/Transc1Hin.gf -------------------------------------------------------------------------------- /mgl/hindi/urd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/hindi/urd.txt -------------------------------------------------------------------------------- /mgl/italian/Fns1Ita.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/italian/Fns1Ita.gf -------------------------------------------------------------------------------- /mgl/italian/MathIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/italian/MathIta.gf -------------------------------------------------------------------------------- /mgl/italian/Nums1Ita.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/italian/Nums1Ita.gf -------------------------------------------------------------------------------- /mgl/italian/Set1Ita.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/italian/Set1Ita.gf -------------------------------------------------------------------------------- /mgl/italian/TestIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/italian/TestIta.gf -------------------------------------------------------------------------------- /mgl/latex/Fns1LaTeX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/latex/Fns1LaTeX.gf -------------------------------------------------------------------------------- /mgl/latex/MathLaTeX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/latex/MathLaTeX.gf -------------------------------------------------------------------------------- /mgl/latex/Nums1LaTeX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/latex/Nums1LaTeX.gf -------------------------------------------------------------------------------- /mgl/latex/Set1LaTeX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/latex/Set1LaTeX.gf -------------------------------------------------------------------------------- /mgl/latex/myLaTeX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/latex/myLaTeX.gf -------------------------------------------------------------------------------- /mgl/mgl.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/mgl.cabal -------------------------------------------------------------------------------- /mgl/polish/Arith1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Arith1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/Arith2Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Arith2Pol.gf -------------------------------------------------------------------------------- /mgl/polish/Fns1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Fns1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/GroundPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/GroundPol.gf -------------------------------------------------------------------------------- /mgl/polish/Limit1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Limit1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/Logic1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Logic1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/MathPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/MathPol.gf -------------------------------------------------------------------------------- /mgl/polish/Nums1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Nums1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/Quant1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Quant1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/SData1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/SData1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/Set1Pol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/Set1Pol.gf -------------------------------------------------------------------------------- /mgl/polish/TestPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/polish/TestPol.gf -------------------------------------------------------------------------------- /mgl/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/refactor.py -------------------------------------------------------------------------------- /mgl/resources/Fns1I.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/Fns1I.gf -------------------------------------------------------------------------------- /mgl/resources/Fns2I.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/Fns2I.gf -------------------------------------------------------------------------------- /mgl/resources/Math.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/Math.gf -------------------------------------------------------------------------------- /mgl/resources/MathI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/MathI.gf -------------------------------------------------------------------------------- /mgl/resources/Nums1I.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/Nums1I.gf -------------------------------------------------------------------------------- /mgl/resources/Set1I.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/resources/Set1I.gf -------------------------------------------------------------------------------- /mgl/romanian/Fns1Ron.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/romanian/Fns1Ron.gf -------------------------------------------------------------------------------- /mgl/romanian/MathRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/romanian/MathRon.gf -------------------------------------------------------------------------------- /mgl/romanian/Set1Ron.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/romanian/Set1Ron.gf -------------------------------------------------------------------------------- /mgl/romanian/TestRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/romanian/TestRon.gf -------------------------------------------------------------------------------- /mgl/russian/Fns1Rus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/russian/Fns1Rus.gf -------------------------------------------------------------------------------- /mgl/russian/MathRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/russian/MathRus.gf -------------------------------------------------------------------------------- /mgl/russian/Nums1Rus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/russian/Nums1Rus.gf -------------------------------------------------------------------------------- /mgl/russian/Set1Rus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/russian/Set1Rus.gf -------------------------------------------------------------------------------- /mgl/russian/TestRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/russian/TestRus.gf -------------------------------------------------------------------------------- /mgl/sage/Arith1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Arith1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Arith2Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Arith2Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Fns1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Fns1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/GfSage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/GfSage.hs -------------------------------------------------------------------------------- /mgl/sage/GfSide.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/GfSide.hs -------------------------------------------------------------------------------- /mgl/sage/GroundSage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/GroundSage.gf -------------------------------------------------------------------------------- /mgl/sage/IPython.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/IPython.hs -------------------------------------------------------------------------------- /mgl/sage/Limit1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Limit1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/LinAlg1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/LinAlg1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/LinAlg2Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/LinAlg2Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Logic1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Logic1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Makefile -------------------------------------------------------------------------------- /mgl/sage/MathSage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/MathSage.gf -------------------------------------------------------------------------------- /mgl/sage/MinMax1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/MinMax1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Nums1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Nums1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Quant1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Quant1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/README.md -------------------------------------------------------------------------------- /mgl/sage/SData1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/SData1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/SageService.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/SageService.hs -------------------------------------------------------------------------------- /mgl/sage/SageSide.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/SageSide.hs -------------------------------------------------------------------------------- /mgl/sage/Set1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Set1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Test.hs -------------------------------------------------------------------------------- /mgl/sage/Transc1Sage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Transc1Sage.gf -------------------------------------------------------------------------------- /mgl/sage/Transfer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Transfer.hs -------------------------------------------------------------------------------- /mgl/sage/Voice.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/Voice.hs -------------------------------------------------------------------------------- /mgl/sage/gf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/gf.py -------------------------------------------------------------------------------- /mgl/sage/gfsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/gfsage.py -------------------------------------------------------------------------------- /mgl/sage/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/kernel.py -------------------------------------------------------------------------------- /mgl/sage/mySage.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/mySage.gf -------------------------------------------------------------------------------- /mgl/sage/nlgf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/nlgf/Makefile -------------------------------------------------------------------------------- /mgl/sage/nlgf/nlgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/nlgf/nlgf.py -------------------------------------------------------------------------------- /mgl/sage/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/test.py -------------------------------------------------------------------------------- /mgl/sage/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/sage/voice.py -------------------------------------------------------------------------------- /mgl/server/Cache.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/Cache.hs -------------------------------------------------------------------------------- /mgl/server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/LICENSE -------------------------------------------------------------------------------- /mgl/server/RunHTTP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/RunHTTP.hs -------------------------------------------------------------------------------- /mgl/server/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/Setup.hs -------------------------------------------------------------------------------- /mgl/server/pgf-fcgi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/pgf-fcgi.hs -------------------------------------------------------------------------------- /mgl/server/pgf-http.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/server/pgf-http.hs -------------------------------------------------------------------------------- /mgl/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/setup.py -------------------------------------------------------------------------------- /mgl/spanish/Fns1Spa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/spanish/Fns1Spa.gf -------------------------------------------------------------------------------- /mgl/spanish/MathSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/spanish/MathSpa.gf -------------------------------------------------------------------------------- /mgl/spanish/Nums1Spa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/spanish/Nums1Spa.gf -------------------------------------------------------------------------------- /mgl/spanish/Set1Spa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/spanish/Set1Spa.gf -------------------------------------------------------------------------------- /mgl/spanish/TestSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/spanish/TestSpa.gf -------------------------------------------------------------------------------- /mgl/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/src/Main.hs -------------------------------------------------------------------------------- /mgl/svn-commit.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/svn-commit.tmp -------------------------------------------------------------------------------- /mgl/swedish/Fns1Swe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/swedish/Fns1Swe.gf -------------------------------------------------------------------------------- /mgl/swedish/MathSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/swedish/MathSwe.gf -------------------------------------------------------------------------------- /mgl/swedish/Nums1Swe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/swedish/Nums1Swe.gf -------------------------------------------------------------------------------- /mgl/swedish/Set1Swe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/swedish/Set1Swe.gf -------------------------------------------------------------------------------- /mgl/swedish/TestSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/swedish/TestSwe.gf -------------------------------------------------------------------------------- /mgl/test/Defect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Defect.hs -------------------------------------------------------------------------------- /mgl/test/Editor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Editor.hs -------------------------------------------------------------------------------- /mgl/test/GPComment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/GPComment.hs -------------------------------------------------------------------------------- /mgl/test/GPTicket.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/GPTicket.hs -------------------------------------------------------------------------------- /mgl/test/GPUser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/GPUser.hs -------------------------------------------------------------------------------- /mgl/test/Info.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Info.hs -------------------------------------------------------------------------------- /mgl/test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Main.hs -------------------------------------------------------------------------------- /mgl/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Makefile -------------------------------------------------------------------------------- /mgl/test/PdTicket.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/PdTicket.hs -------------------------------------------------------------------------------- /mgl/test/Treebank.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Treebank.hs -------------------------------------------------------------------------------- /mgl/test/Update.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Update.hs -------------------------------------------------------------------------------- /mgl/test/Upgrade.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Upgrade.hs -------------------------------------------------------------------------------- /mgl/test/Validate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/Validate.hs -------------------------------------------------------------------------------- /mgl/test/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/create.py -------------------------------------------------------------------------------- /mgl/test/entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/entries.json -------------------------------------------------------------------------------- /mgl/test/table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/table -------------------------------------------------------------------------------- /mgl/test/treebank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/test/treebank.json -------------------------------------------------------------------------------- /mgl/transfer/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/transfer/Fold.hs -------------------------------------------------------------------------------- /mgl/transfer/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/transfer/Main.hs -------------------------------------------------------------------------------- /mgl/trees.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/trees.gfs -------------------------------------------------------------------------------- /mgl/urdu/Arith1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Arith1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Arith2Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Arith2Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Complex1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Complex1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Fns1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Fns1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/GroundUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/GroundUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/Integer1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Integer1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Integer2Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Integer2Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/LexiconUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/LexiconUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/Limit1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Limit1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/LinAlg1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/LinAlg1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/LinAlg2Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/LinAlg2Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/LiteralsUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/LiteralsUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/Logic1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Logic1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/MathBarUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/MathBarUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/MathUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/MathUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/MathUrd0.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/MathUrd0.gf -------------------------------------------------------------------------------- /mgl/urdu/MinMax1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/MinMax1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Nums1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Nums1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/OpenMathUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/OpenMathUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/PlanGeo1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/PlanGeo1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Quant1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Quant1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/SData1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/SData1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/Set1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Set1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/SetName1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/SetName1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/TestUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/TestUrd.gf -------------------------------------------------------------------------------- /mgl/urdu/Transc1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/Transc1Urd.gf -------------------------------------------------------------------------------- /mgl/urdu/VecCalc1Urd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/urdu/VecCalc1Urd.gf -------------------------------------------------------------------------------- /mgl/wproblems/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/wproblems/configure -------------------------------------------------------------------------------- /mgl/wproblems/create.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/wproblems/create.in -------------------------------------------------------------------------------- /mgl/wproblems/model.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/wproblems/model.in -------------------------------------------------------------------------------- /mgl/wproblems/pre.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/wproblems/pre.scala -------------------------------------------------------------------------------- /mgl/wproblems/src/gf/AllProblems.gf: -------------------------------------------------------------------------------- 1 | abstract AllProblems = 2 | WPEntity, 3 | Qualifier, 4 | WPRelation ** {} -------------------------------------------------------------------------------- /mgl/www/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/about.html -------------------------------------------------------------------------------- /mgl/www/img/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/add.gif -------------------------------------------------------------------------------- /mgl/www/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/alert.gif -------------------------------------------------------------------------------- /mgl/www/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/button.gif -------------------------------------------------------------------------------- /mgl/www/img/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/delete.gif -------------------------------------------------------------------------------- /mgl/www/img/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/info.gif -------------------------------------------------------------------------------- /mgl/www/img/lens.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/lens.gif -------------------------------------------------------------------------------- /mgl/www/img/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/msg.gif -------------------------------------------------------------------------------- /mgl/www/img/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/img/user.gif -------------------------------------------------------------------------------- /mgl/www/minibar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/minibar.css -------------------------------------------------------------------------------- /mgl/www/minibar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/minibar.js -------------------------------------------------------------------------------- /mgl/www/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/support.js -------------------------------------------------------------------------------- /mgl/www/webalt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mgl/www/webalt.html -------------------------------------------------------------------------------- /mini/Grammar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/Grammar.gf -------------------------------------------------------------------------------- /mini/GrammarEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/GrammarEng.gf -------------------------------------------------------------------------------- /mini/GrammarGot.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/GrammarGot.gf -------------------------------------------------------------------------------- /mini/GrammarIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/GrammarIta.gf -------------------------------------------------------------------------------- /mini/GrammarPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/GrammarPor.gf -------------------------------------------------------------------------------- /mini/ParadigmsGot.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ParadigmsGot.gf -------------------------------------------------------------------------------- /mini/ParadigmsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ParadigmsIta.gf -------------------------------------------------------------------------------- /mini/ParadigmsPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ParadigmsPor.gf -------------------------------------------------------------------------------- /mini/ResEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ResEng.gf -------------------------------------------------------------------------------- /mini/ResGot.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ResGot.gf -------------------------------------------------------------------------------- /mini/ResIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ResIta.gf -------------------------------------------------------------------------------- /mini/ResPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/ResPor.gf -------------------------------------------------------------------------------- /mini/Syntax.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/Syntax.gf -------------------------------------------------------------------------------- /mini/SyntaxGot.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/SyntaxGot.gf -------------------------------------------------------------------------------- /mini/SyntaxIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/SyntaxIta.gf -------------------------------------------------------------------------------- /mini/SyntaxPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/SyntaxPor.gf -------------------------------------------------------------------------------- /mini/Test.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/Test.gf -------------------------------------------------------------------------------- /mini/TestEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/TestEng.gf -------------------------------------------------------------------------------- /mini/TestGot.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/TestGot.gf -------------------------------------------------------------------------------- /mini/TestIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/TestIta.gf -------------------------------------------------------------------------------- /mini/TestPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/TestPor.gf -------------------------------------------------------------------------------- /mini/newmini/README.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/mini/newmini/README.t2t -------------------------------------------------------------------------------- /miniresource/ResGle.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/miniresource/ResGle.gf -------------------------------------------------------------------------------- /morpho/Eng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/Eng.gf -------------------------------------------------------------------------------- /morpho/EngDescr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/EngDescr.gf -------------------------------------------------------------------------------- /morpho/EngReal.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/EngReal.gf -------------------------------------------------------------------------------- /morpho/Fre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/Fre.gf -------------------------------------------------------------------------------- /morpho/FreDescr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/FreDescr.gf -------------------------------------------------------------------------------- /morpho/FreReal.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/FreReal.gf -------------------------------------------------------------------------------- /morpho/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/morpho/README.txt -------------------------------------------------------------------------------- /music/Diatonic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/Diatonic.gf -------------------------------------------------------------------------------- /music/DiatonicC.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/DiatonicC.gf -------------------------------------------------------------------------------- /music/Music.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/Music.gf -------------------------------------------------------------------------------- /music/MusicC.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/MusicC.gf -------------------------------------------------------------------------------- /music/Pentatonic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/Pentatonic.gf -------------------------------------------------------------------------------- /music/PentatonicC.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/PentatonicC.gf -------------------------------------------------------------------------------- /music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/music/README.md -------------------------------------------------------------------------------- /nlg/Logic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nlg/Logic.gf -------------------------------------------------------------------------------- /nlg/LogicCnc.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nlg/LogicCnc.gf -------------------------------------------------------------------------------- /nlg/NLG.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nlg/NLG.gf -------------------------------------------------------------------------------- /nlg/NLGEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nlg/NLGEng.gf -------------------------------------------------------------------------------- /nqueens/NQueens.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nqueens/NQueens.gf -------------------------------------------------------------------------------- /nqueens/NQueensAscii.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nqueens/NQueensAscii.gf -------------------------------------------------------------------------------- /nqueens/Nat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nqueens/Nat.gf -------------------------------------------------------------------------------- /nqueens/NatAscii.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/nqueens/NatAscii.gf -------------------------------------------------------------------------------- /numerals/Numerals.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/Numerals.gf -------------------------------------------------------------------------------- /numerals/af_tunni.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/af_tunni.gf -------------------------------------------------------------------------------- /numerals/albanian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/albanian.gf -------------------------------------------------------------------------------- /numerals/amharic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/amharic.gf -------------------------------------------------------------------------------- /numerals/basque.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/basque.gf -------------------------------------------------------------------------------- /numerals/bulgarian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/bulgarian.gf -------------------------------------------------------------------------------- /numerals/catalan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/catalan.gf -------------------------------------------------------------------------------- /numerals/chinese.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/chinese.gf -------------------------------------------------------------------------------- /numerals/croatian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/croatian.gf -------------------------------------------------------------------------------- /numerals/czech.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/czech.gf -------------------------------------------------------------------------------- /numerals/dagur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/dagur.gf -------------------------------------------------------------------------------- /numerals/danish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/danish.gf -------------------------------------------------------------------------------- /numerals/decimal.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/decimal.gf -------------------------------------------------------------------------------- /numerals/dothraki.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/dothraki.gf -------------------------------------------------------------------------------- /numerals/dutch.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/dutch.gf -------------------------------------------------------------------------------- /numerals/english.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/english.gf -------------------------------------------------------------------------------- /numerals/estonian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/estonian.gf -------------------------------------------------------------------------------- /numerals/finnish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/finnish.gf -------------------------------------------------------------------------------- /numerals/french.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/french.gf -------------------------------------------------------------------------------- /numerals/frisian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/frisian.gf -------------------------------------------------------------------------------- /numerals/fulfulde.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/fulfulde.gf -------------------------------------------------------------------------------- /numerals/geez.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/geez.gf -------------------------------------------------------------------------------- /numerals/german.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/german.gf -------------------------------------------------------------------------------- /numerals/guahibo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/guahibo.gf -------------------------------------------------------------------------------- /numerals/guarani.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/guarani.gf -------------------------------------------------------------------------------- /numerals/hindi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/hindi.gf -------------------------------------------------------------------------------- /numerals/hungarian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/hungarian.gf -------------------------------------------------------------------------------- /numerals/icelandic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/icelandic.gf -------------------------------------------------------------------------------- /numerals/interlingua.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/interlingua.gf -------------------------------------------------------------------------------- /numerals/irish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/irish.gf -------------------------------------------------------------------------------- /numerals/italian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/italian.gf -------------------------------------------------------------------------------- /numerals/japanese.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/japanese.gf -------------------------------------------------------------------------------- /numerals/kabardian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kabardian.gf -------------------------------------------------------------------------------- /numerals/kambera.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kambera.gf -------------------------------------------------------------------------------- /numerals/kawaiisu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kawaiisu.gf -------------------------------------------------------------------------------- /numerals/khmer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/khmer.gf -------------------------------------------------------------------------------- /numerals/khowar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/khowar.gf -------------------------------------------------------------------------------- /numerals/korean.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/korean.gf -------------------------------------------------------------------------------- /numerals/kulung.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kulung.gf -------------------------------------------------------------------------------- /numerals/kwami.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kwami.gf -------------------------------------------------------------------------------- /numerals/kwaza.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/kwaza.gf -------------------------------------------------------------------------------- /numerals/lalo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/lalo.gf -------------------------------------------------------------------------------- /numerals/lamani.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/lamani.gf -------------------------------------------------------------------------------- /numerals/latvian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/latvian.gf -------------------------------------------------------------------------------- /numerals/lithuanian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/lithuanian.gf -------------------------------------------------------------------------------- /numerals/lotuxo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/lotuxo.gf -------------------------------------------------------------------------------- /numerals/maale.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/maale.gf -------------------------------------------------------------------------------- /numerals/malay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/malay.gf -------------------------------------------------------------------------------- /numerals/maltese.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/maltese.gf -------------------------------------------------------------------------------- /numerals/mapuche.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/mapuche.gf -------------------------------------------------------------------------------- /numerals/margi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/margi.gf -------------------------------------------------------------------------------- /numerals/maybrat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/maybrat.gf -------------------------------------------------------------------------------- /numerals/miya.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/miya.gf -------------------------------------------------------------------------------- /numerals/mongolian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/mongolian.gf -------------------------------------------------------------------------------- /numerals/nenets.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/nenets.gf -------------------------------------------------------------------------------- /numerals/oromo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/oromo.gf -------------------------------------------------------------------------------- /numerals/pashto.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/pashto.gf -------------------------------------------------------------------------------- /numerals/polish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/polish.gf -------------------------------------------------------------------------------- /numerals/portuguese.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/portuguese.gf -------------------------------------------------------------------------------- /numerals/quechua.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/quechua.gf -------------------------------------------------------------------------------- /numerals/romanian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/romanian.gf -------------------------------------------------------------------------------- /numerals/russian.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/russian.gf -------------------------------------------------------------------------------- /numerals/sango.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/sango.gf -------------------------------------------------------------------------------- /numerals/slovak.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/slovak.gf -------------------------------------------------------------------------------- /numerals/sorani.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/sorani.gf -------------------------------------------------------------------------------- /numerals/spanish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/spanish.gf -------------------------------------------------------------------------------- /numerals/stieng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/stieng.gf -------------------------------------------------------------------------------- /numerals/swahili.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/swahili.gf -------------------------------------------------------------------------------- /numerals/swedish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/swedish.gf -------------------------------------------------------------------------------- /numerals/tamil.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/tamil.gf -------------------------------------------------------------------------------- /numerals/tampere.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/tampere.gf -------------------------------------------------------------------------------- /numerals/thai.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/thai.gf -------------------------------------------------------------------------------- /numerals/tibetan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/tibetan.gf -------------------------------------------------------------------------------- /numerals/todo/irula.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/irula.gf -------------------------------------------------------------------------------- /numerals/todo/kodagu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/kodagu.gf -------------------------------------------------------------------------------- /numerals/todo/thai.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/thai.gf -------------------------------------------------------------------------------- /numerals/todo/thaiDU.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/thaiDU.gf -------------------------------------------------------------------------------- /numerals/todo/thaiP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/thaiP.gf -------------------------------------------------------------------------------- /numerals/todo/welsh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/todo/welsh.gf -------------------------------------------------------------------------------- /numerals/totonac.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/totonac.gf -------------------------------------------------------------------------------- /numerals/tuda_daza.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/tuda_daza.gf -------------------------------------------------------------------------------- /numerals/tukang_besi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/tukang_besi.gf -------------------------------------------------------------------------------- /numerals/turkish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/turkish.gf -------------------------------------------------------------------------------- /numerals/votic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/votic.gf -------------------------------------------------------------------------------- /numerals/yiddish.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/yiddish.gf -------------------------------------------------------------------------------- /numerals/zaiwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/numerals/zaiwa.gf -------------------------------------------------------------------------------- /peacekeeping/EXAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/peacekeeping/EXAMPLES -------------------------------------------------------------------------------- /peacekeeping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/peacekeeping/Makefile -------------------------------------------------------------------------------- /peacekeeping/Peace.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/peacekeeping/Peace.gf -------------------------------------------------------------------------------- /peacekeeping/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/peacekeeping/README -------------------------------------------------------------------------------- /phrasebook/Clone.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Clone.hs -------------------------------------------------------------------------------- /phrasebook/Compile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Compile.hs -------------------------------------------------------------------------------- /phrasebook/Greetings.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Greetings.gf -------------------------------------------------------------------------------- /phrasebook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Makefile -------------------------------------------------------------------------------- /phrasebook/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Makefile2 -------------------------------------------------------------------------------- /phrasebook/Sentences.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Sentences.gf -------------------------------------------------------------------------------- /phrasebook/Update.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Update.hs -------------------------------------------------------------------------------- /phrasebook/Words.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/Words.gf -------------------------------------------------------------------------------- /phrasebook/WordsBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsBul.gf -------------------------------------------------------------------------------- /phrasebook/WordsCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsCat.gf -------------------------------------------------------------------------------- /phrasebook/WordsChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsChi.gf -------------------------------------------------------------------------------- /phrasebook/WordsDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsDan.gf -------------------------------------------------------------------------------- /phrasebook/WordsDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsDut.gf -------------------------------------------------------------------------------- /phrasebook/WordsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsEng.gf -------------------------------------------------------------------------------- /phrasebook/WordsEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsEst.gf -------------------------------------------------------------------------------- /phrasebook/WordsFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsFin.gf -------------------------------------------------------------------------------- /phrasebook/WordsFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsFre.gf -------------------------------------------------------------------------------- /phrasebook/WordsGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsGer.gf -------------------------------------------------------------------------------- /phrasebook/WordsHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsHin.gf -------------------------------------------------------------------------------- /phrasebook/WordsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsIta.gf -------------------------------------------------------------------------------- /phrasebook/WordsJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsJpn.gf -------------------------------------------------------------------------------- /phrasebook/WordsLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsLav.gf -------------------------------------------------------------------------------- /phrasebook/WordsNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsNor.gf -------------------------------------------------------------------------------- /phrasebook/WordsPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsPes.gf -------------------------------------------------------------------------------- /phrasebook/WordsPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsPol.gf -------------------------------------------------------------------------------- /phrasebook/WordsRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsRon.gf -------------------------------------------------------------------------------- /phrasebook/WordsRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsRus.gf -------------------------------------------------------------------------------- /phrasebook/WordsSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsSnd.gf -------------------------------------------------------------------------------- /phrasebook/WordsSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsSpa.gf -------------------------------------------------------------------------------- /phrasebook/WordsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsSwe.gf -------------------------------------------------------------------------------- /phrasebook/WordsTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsTha.gf -------------------------------------------------------------------------------- /phrasebook/WordsUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/WordsUrd.gf -------------------------------------------------------------------------------- /phrasebook/missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/missing.txt -------------------------------------------------------------------------------- /phrasebook/pgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/pgraph.png -------------------------------------------------------------------------------- /phrasebook/picpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/picpic.jpg -------------------------------------------------------------------------------- /phrasebook/thai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/phrasebook/thai.png -------------------------------------------------------------------------------- /proofs/Prop.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/proofs/Prop.gf -------------------------------------------------------------------------------- /py-bindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/Makefile -------------------------------------------------------------------------------- /py-bindings/PyGF.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/PyGF.hsc -------------------------------------------------------------------------------- /py-bindings/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/example.rst -------------------------------------------------------------------------------- /py-bindings/gfmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/gfmodule.c -------------------------------------------------------------------------------- /py-bindings/pygf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/pygf.h -------------------------------------------------------------------------------- /py-bindings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/py-bindings/test.py -------------------------------------------------------------------------------- /query-converter/.ghci: -------------------------------------------------------------------------------- 1 | :set -igenerated 2 | -------------------------------------------------------------------------------- /query-converter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query-converter/README -------------------------------------------------------------------------------- /query-converter/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /query-converter/XML.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query-converter/XML.bnf -------------------------------------------------------------------------------- /query-converter/webapp/.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | js 3 | -------------------------------------------------------------------------------- /query-converter/webapp/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /query/LexQuery.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/LexQuery.gf -------------------------------------------------------------------------------- /query/LexQueryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/LexQueryEng.gf -------------------------------------------------------------------------------- /query/LexQueryFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/LexQueryFre.gf -------------------------------------------------------------------------------- /query/LexQuerySwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/LexQuerySwe.gf -------------------------------------------------------------------------------- /query/Query.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/Query.gf -------------------------------------------------------------------------------- /query/QueryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/QueryEng.gf -------------------------------------------------------------------------------- /query/QueryFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/QueryFre.gf -------------------------------------------------------------------------------- /query/QueryI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/QueryI.gf -------------------------------------------------------------------------------- /query/QuerySwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/QuerySwe.gf -------------------------------------------------------------------------------- /query/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/README -------------------------------------------------------------------------------- /query/TestQuery.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/TestQuery.gf -------------------------------------------------------------------------------- /query/small/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/small/Makefile -------------------------------------------------------------------------------- /query/small/Query.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/small/Query.gf -------------------------------------------------------------------------------- /query/small/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/small/README -------------------------------------------------------------------------------- /query/test.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/test.gfs -------------------------------------------------------------------------------- /query/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/query/test.txt -------------------------------------------------------------------------------- /racket-bindings/.gitignore: -------------------------------------------------------------------------------- 1 | compiled/* 2 | *.dylib 3 | *~ 4 | -------------------------------------------------------------------------------- /racket-bindings/gf/README.md: -------------------------------------------------------------------------------- 1 | gf 2 | == 3 | Bindings to GF (http://www.grammaticalframework.org) 4 | -------------------------------------------------------------------------------- /sammie/ExtSammie.gf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sammie/Sammie.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/Sammie.gf -------------------------------------------------------------------------------- /sammie/SammieEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieEng.gf -------------------------------------------------------------------------------- /sammie/SammieEng1.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieEng1.gf -------------------------------------------------------------------------------- /sammie/SammieFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieFin.gf -------------------------------------------------------------------------------- /sammie/SammieFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieFre.gf -------------------------------------------------------------------------------- /sammie/SammieGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieGer.gf -------------------------------------------------------------------------------- /sammie/SammieGer2.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieGer2.gf -------------------------------------------------------------------------------- /sammie/SammieI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieI.gf -------------------------------------------------------------------------------- /sammie/SammieSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieSpa.gf -------------------------------------------------------------------------------- /sammie/SammieSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/sammie/SammieSwe.gf -------------------------------------------------------------------------------- /smultron/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/smultron/.DS_Store -------------------------------------------------------------------------------- /smultron/Idents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/smultron/Idents.hs -------------------------------------------------------------------------------- /smultron/Monad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/smultron/Monad.hs -------------------------------------------------------------------------------- /smultron/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/smultron/README -------------------------------------------------------------------------------- /testsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/testsuite/README.md -------------------------------------------------------------------------------- /three-words/Three.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/three-words/Three.gf -------------------------------------------------------------------------------- /trigram/Shaw.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/trigram/Shaw.gf -------------------------------------------------------------------------------- /trigram/ShawCnc.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/trigram/ShawCnc.gf -------------------------------------------------------------------------------- /trigram/Trigram.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/trigram/Trigram.gf -------------------------------------------------------------------------------- /ttr-grammar/ErrM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ErrM.hs -------------------------------------------------------------------------------- /ttr-grammar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/README -------------------------------------------------------------------------------- /ttr-grammar/TTR.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/TTR.bnf -------------------------------------------------------------------------------- /ttr-grammar/ex1.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex1.ttr -------------------------------------------------------------------------------- /ttr-grammar/ex2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex2.pdf -------------------------------------------------------------------------------- /ttr-grammar/ex2.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex2.ttr -------------------------------------------------------------------------------- /ttr-grammar/ex3.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex3.ttr -------------------------------------------------------------------------------- /ttr-grammar/ex4.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex4.ttr -------------------------------------------------------------------------------- /ttr-grammar/ex6.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex6.ttr -------------------------------------------------------------------------------- /ttr-grammar/ex8.ttr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ttr-grammar/ex8.ttr -------------------------------------------------------------------------------- /typetheory/Donkey.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/typetheory/Donkey.gf -------------------------------------------------------------------------------- /typetheory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/typetheory/README -------------------------------------------------------------------------------- /typetheory/Types.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/typetheory/Types.gf -------------------------------------------------------------------------------- /ud2gf/GetConfig.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/GetConfig.hs -------------------------------------------------------------------------------- /ud2gf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/Makefile -------------------------------------------------------------------------------- /ud2gf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/README -------------------------------------------------------------------------------- /ud2gf/Translate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/Translate.hs -------------------------------------------------------------------------------- /ud2gf/TreeConv.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/TreeConv.hs -------------------------------------------------------------------------------- /ud2gf/UD2GF.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/UD2GF.hs -------------------------------------------------------------------------------- /ud2gf/UDTranslate.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/ud2gf/UDTranslate.gf -------------------------------------------------------------------------------- /weather_qa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/weather_qa/README -------------------------------------------------------------------------------- /weather_qa/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/weather_qa/qa.py -------------------------------------------------------------------------------- /zork/Zork.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/zork/Zork.gf -------------------------------------------------------------------------------- /zork/ZorkEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/zork/ZorkEng.gf -------------------------------------------------------------------------------- /zork/ZorkMar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-contrib/HEAD/zork/ZorkMar.gf --------------------------------------------------------------------------------