Re:

2013-04-08 Thread aarthi
hi... i'm comparing two owl files using jena. in that i use this code for comparision private boolean areEqual(RDFNode thisOne, RDFNode thatOne){ if(thisOne.isResource() thatOne.isResource()) return areEqual(thisOne.asResource(), thatOne.asResource());

Re: Re:

2013-04-08 Thread Chris Dollin
On Monday, April 08, 2013 03:06:39 AM aarthi wrote: hi... i'm comparing two owl files using jena. in that i use this code for comparision private boolean areEqual(RDFNode thisOne, RDFNode thatOne){ if(thisOne.isResource() thatOne.isResource()) return

Re: Different query results from ARQ and Fuseki

2013-04-08 Thread Andy Seaborne
On 07/04/13 21:20, Bob DuCharme wrote: How are you running Fuseki? I used File upload on the http://localhost:3030/sparql.tpl screen to load a ttl file of the data into Fuseki and then pasted the query into the SPARQL Query field at the top of that form. Into a TDB dataset presumable (e.g.

Re: Different query results from ARQ and Fuseki

2013-04-08 Thread Andy Seaborne
On 08/04/13 15:04, Bob DuCharme wrote: Yes, I did start Fuseki with a -loc parameter, so it looks like the difference is that command line ARQ uses in-memory storage and hence does the inferencing, but the ARQ code that works with disk-based storage does not. Is that correct? Yes. Goes away