Examples of PlanGenerator


Examples of com.foundationdb.server.service.externaldata.PlanGenerator

            appender.append(insertProcessor.processInsert(context.session, context.table.getAIS(), context.tableName, node));
        }
    }

    private Row determineExistance (ProcessContext context) {
        PlanGenerator generator = context.table.getAIS().getCachedValue(extDataService, ExternalDataServiceImpl.CACHED_PLAN_GENERATOR);
        Operator plan = generator.generateAncestorPlan(context.table);
        Cursor cursor = null;
        try {

            Value value = new Value(context.typesTranslator.typeForString());
            int i = 0;
View Full Code Here

Examples of org.opentripplanner.api.resource.PlanGenerator

            this.pathService = pathService;
            // cpf.bind(RemainingWeightHeuristicFactory.class,
            //        new DefaultRemainingWeightHeuristicFactoryImpl());
        }

        planGenerator = new PlanGenerator(graphService, pathService);
        tileRendererManager = new TileRendererManager(graphService);

        // Optional Analyst Modules.
        if (params.analyst) {
            tileCache = new TileCache(graphService);
View Full Code Here

Examples of org.opentripplanner.api.resource.PlanGenerator

                }
            }
        }
        Geometry geom = GeometryUtils.getGeometryFactory().createLineString(coordinates);
        this.geometry = PolylineEncoder.createEncodings(geom);
        PlanGenerator pgen = new PlanGenerator(null, null);
        Itinerary itin = pgen.generateItinerary(path, false);
        for (Leg leg : itin.legs) {
            walkSteps.addAll(leg.walkSteps);
        }
        time = (int) (state.getElapsedTimeSeconds());
    }
View Full Code Here

Examples of org.opentripplanner.api.resource.PlanGenerator

        if (isLongDistance()) {
            pathService = new LongDistancePathService(null, genericAStar);
        } else {
            pathService = new RetryingPathServiceImpl(null, genericAStar);
        }
        planGenerator = new PlanGenerator(null, pathService);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.