-- Initial XSaiga.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: XSaiga version: 1.6.0.0 synopsis: An implementation of a polynomial-time top-down parser suitable for NLP -- description: homepage: http://speechweb2.cs.uwindsor.ca/solarman4/demo_sparql.html license: BSD3 license-file: LICENSE author: Dr. Rahmatullah Hafiz, Dr. Richard Frost (rfrost@cogeco.ca), Shane Peelar, Paul Callaghan, and Eric Matthews maintainer: peelar@uwindsor.ca -- copyright: category: Parsing, Natural Language Processing, Memoization, ParserCombinators, Attribute Grammars, Text build-type: Simple cabal-version: >=1.8 --x-revision: 1 description: This package contains a Haskell implementation of the X-SAIGA project's parser combinators. The combinators enable fully-general attribute grammars to be implemented as executable specifications. Although the parser is top-down, and therefore highly modular, left-recursive productions are allowed and fully-general synthesized and inherited attribute dependencies are also allowed. The parse tree, which is decorated with attribute values, is built as a compact Tomita-style graph. Lazy evaluation enables attribute values to be evaluated only as needed. Time and space complexity are both O(n^4) where n is the length of the input. An example natural-language interface (called Solarman) to a semantic-web style RDF triplestore with approximately 3,000 facts about the solar system has been built as an executable specification of an attribute grammar. Solarman is included in this archive. Solarman computes answers to queries using an event-based denotational semantics which is based on Montague and Davidsonian semantics. A web site [3] has been created so that readers can enter queries and find out more about Solarman. . \[1] . \[2] . \[3] Library build-depends: base >=4.6 && < 5, pretty, hsparql >=0.2, rdf4h, text, containers, network, bifunctors, mtl, bytestring, cgi exposed-modules: XSaiga.Getts, XSaiga.AGParser2, XSaiga.TypeAg2, XSaiga.SolarmanTriplestore, XSaiga.Interactive, XSaiga.LocalData, XSaiga.CGI other-modules: XSaiga.ShowText extensions: OverloadedStrings,FlexibleInstances,NoMonomorphismRestriction Executable Solarman main-is:Main.hs other-modules:XSaiga.AGParser2 XSaiga.Getts XSaiga.LocalData XSaiga.SolarmanTriplestore XSaiga.TypeAg2 XSaiga.ShowText XSaiga.CGI build-depends: base >=4.6 && < 5, containers >=0.5, pretty >=1.1, cgi, rdf4h >=1.2, hsparql >=0.2, text >=0.11, network, bytestring, bifunctors, mtl extensions: DoAndIfThenElse,FlexibleInstances,NoMonomorphismRestriction,OverloadedStrings