1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

clear unused classes

This commit is contained in:
oblonski 2013-08-24 10:50:36 +02:00
parent 2b1203e4ab
commit 44742c3ae7
2 changed files with 0 additions and 61 deletions

View file

@ -1,27 +0,0 @@
package algorithms;
class InsertionScenario {
InsertionContext iFacts;
InsertionData iData;
public InsertionScenario(InsertionContext iFacts, InsertionData iData) {
super();
this.iFacts = iFacts;
this.iData = iData;
}
/**
* @return the iFacts
*/
public InsertionContext getiFacts() {
return iFacts;
}
/**
* @return the iData
*/
public InsertionData getiData() {
return iData;
}
}

View file

@ -1,34 +0,0 @@
/*******************************************************************************
* Copyright (C) 2013 Stefan Schroeder
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Contributors:
* Stefan Schroeder - initial API and implementation
******************************************************************************/
package algorithms;
import basics.Job;
import basics.route.VehicleRoute;
class TourConstraintEngine {
// void ini(VehicleRoute route, Job job){
//
// }
//
}