assertFalse( ((PelletInfGraph) model.getGraph()).getKB().isConsistent() );
String ns = "http://www.example.org/test#";
Property prop = model.getBaseModel().getProperty( ns + "ssn" );
prop.removeAll( RDFS.range );
model.rebind();
assertTrue( ((PelletInfGraph) model.getGraph()).isConsistent() );
}
@Ignore("Inverse functional datatype property support conflicts with changes in r2442 and 2443")