... Argh. You are right. That's a bug. You could patch it by uncommenting the first "sameAs1" rule in your copy of owl-fb.rules. [The problem is that the...
... One approach would be to use typed literals. Create an RDFDatatype (possibly just a dummy one) to represent your objects and then your objects can be...
... It can certainly be used with Java web start. See RDF Gravity http://semweb.salzburgresearch.at/apps/rdf-gravity/index.html for example. ... I assume...
... That's because deletes are not incremental in the rule system at the moment. When you add new facts the rules run incrementally and add any additional...
Thanks for the insight!! So the only I can achieve this is by creating a temp model with all the stmts from Deduction Model, delete the stmt from the model...
I had a another issue , If two diff stmts are resutling in the same stmt being inferred then this method does not work ..as in if X A Y --> X Q W X B Z --> X Q...
Hello everybody I have the following question: In the attached ontology that shows teaching and working relations at our university, there are shown the two...
Hi, Well rdf gravity is an application not an applet.And I dont think it is a good idea to use applets with java webstart. So coming back to the point, here is...
Hello Group, I am using Pellet reasoner on an OWL model. To further process them, I need to retrieve the additional statements that were created by pellet ...
... I'm afraid so unless I fix the incremental-delete problems. ... You can reduce the copying slightly: Model diff = ModelFactory.createDefaultModel(); ...
... Sorry, you can't do that either. RDF Models are sets so only one copy of each derived triple is stored. The rule systems just keep the first triple, with...
... Multiple threads using one connection need a lock (serialization between themselves) and a transaction (to serialize access on other connections). If you...
... Your ontology doesn't tell us what relationship you have defined to model the notion of being an assistant so the following is approximate: Model m = //...
... You should ask the Pellet developers but my assumption is that there isn't an easy way. Notions such as deductionsModel and derivations are fairly specific...
Hi Bernhard, Pellet does not provide the derivation for a statement. Finding the derivation (or in other words explaining) a statement is very hard considering...
Evren Sirin
evren@...
May 2, 2005 3:00 pm
15830
Hi Evren, thanks for your reply. Maybe I did not explain correctly my intention. What I need is a reasoner which returns new statements that are derived *from*...
... True, I was just pointing to it as an example of loading Jena code from within a browser. Personally I find web start more useful than true applets. ... ...
... The built in rule reasoners (RDFS, OWL*) allow you to do this in the sense that when you add the new statement you can see new consequences being added to...
... Joseki-CVS works fine. But there is a problem with its query.html file. The predefined queries are obsolete. The ones available at...
ROSSEL, Olivier (CIMPA)
olivier.rossel@...
May 2, 2005 4:15 pm
15834
... Oh, so you want to see the inferred triples not how they are derived. When PelletReasoner is used, getDeductionsModel() should return a small subset of...
Evren Sirin
evren@...
May 2, 2005 5:46 pm
15835
... Probably. I try to keep the online demo working whenever I change ARQ with any application-visible change or feature. ... Oh dear. Fixed. ... Andy...
... between ... connections). If ... don't ... because ... and not ... incondistent) ... Thanks for clarifying this - needed to make this 100% sure. ... more ...
... That may not have semantics suitable for all application usages, for example, there is no isolation between sub-transactions within outer transaction, and...
... Correct on both counts. ... Even better is to inherit from ModelTestBase and use AssertIsoModels, because that will give you an easier-to-read listing of...