// This class and FactoryGraphTDB are old ways of making graphs and datasets
/** Create a graph backed with storage at a location using B+Tree indexes (testing) */
public static GraphTriplesTDB createBPlusTree(Location location)
{
IndexFactoryBPlusTree idxFactory = new IndexFactoryBPlusTree(SystemTDB.BlockSizeTest) ;
IndexBuilder builder = new IndexBuilder(idxFactory,idxFactory) ;
return FactoryGraphTDB.createGraph(builder, location) ;
}