Git Product home page Git Product logo

Comments (5)

mterdjimi avatar mterdjimi commented on June 28, 2024 2

Looking at your data, it seems that you wrote http://un.jong.kim#hasChild instead of http://un.jong.kim/onto#hasChild in your first rule pattern. Hence, the rule cannot be fired.

Could you try with

h.parseAndAddRule(`(?x http://un.jong.kim/onto#hasChild ?y) ^ (?y http://un.jong.kim/onto#hasChild ?z) -> (?x http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://un.jong.kim/onto#GrandFather)`, 'R1')

please ? Thanks !

from hylar-reasoner.

mterdjimi avatar mterdjimi commented on June 28, 2024

Hello,
Could you please send me the file kg.ttl you are using to populate the store ?

Thanks !

from hylar-reasoner.

crapthings avatar crapthings commented on June 28, 2024
const fs = require('fs')
const Hylar = require('hylar')
const h = new Hylar()
const file = fs.readFileSync('./kg.ttl', { encoding: 'utf-8' })

const PREFIX = IRI => `http://un.jong.kim/onto#${IRI}`

async function test() {
  h.parseAndAddRule(`(?x http://un.jong.kim#hasChild ?y) ^ (?y http://un.jong.kim/onto#hasChild ?z) -> (?x http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://un.jong.kim/onto#GrandFather)`, 'R1')
  const kg = await h.load(file, 'text/turtle')
  const test = await squery(`select * where { ?s ?p :GrandFather . }`)
  console.log(test)
}

test()

async function squery(q) {
  return await h.query(`
    PREFIX : <http://un.jong.kim/onto#>
    ${q}
  `)
}
@prefix : <http://un.jong.kim/onto#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://un.jong.kim/onto> .

<http://un.jong.kim/onto> rdf:type owl:Ontology .

#################################################################
#    Object Properties
#################################################################

###  http://un.jong.kim/onto#hasChild
:hasChild rdf:type owl:ObjectProperty .


#################################################################
#    Classes
#################################################################

###  http://un.jong.kim/onto#GrandFather
:GrandFather rdf:type owl:Class .


#################################################################
#    Individuals
#################################################################

###  http://un.jong.kim/onto#A
:A rdf:type owl:NamedIndividual ;
   :hasChild :B .


###  http://un.jong.kim/onto#B
:B rdf:type owl:NamedIndividual ;
   :hasChild :C .


###  http://un.jong.kim/onto#C
:C rdf:type owl:NamedIndividual .


###  Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi

from hylar-reasoner.

crapthings avatar crapthings commented on June 28, 2024

and it looks like h.parseAndAddRule should put before h.load

from hylar-reasoner.

mterdjimi avatar mterdjimi commented on June 28, 2024

This is right; currently, adding a rule does not reconsider the inferences.
This should be fixed in the next version of HyLAR.

Ps: you can also simply state in your schema that hasFather is an owl:transitiveProperty, as HyLAR supports transitivity without adding any specific rule.

from hylar-reasoner.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.