~ubuntu-branches/debian/sid/geogebra/sid

« back to all changes in this revision

Viewing changes to geogebra/kernel/commands/CmdTravelingSalesman.java

  • Committer: Package Import Robot
  • Author(s): Giovanni Mascellani
  • Date: 2012-01-10 11:37:41 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120110113741-satwohsd4de4ite1
Tags: 4.0.19.0+dfsg1-1
* New upstream version (closes: #649893).
* Update dependency: icedtea-plugin -> icedtea-netx-common (LP: #893007).
* New thumbnailer configuration compatible with Gnome 3.
* Package building is now managed by javahelper instead of upstream
  build.xml.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package geogebra.kernel.commands;
 
2
 
 
3
import geogebra.kernel.GeoElement;
 
4
import geogebra.kernel.GeoList;
 
5
import geogebra.kernel.Kernel;
 
6
 
 
7
class CmdTravelingSalesman extends CmdOneListFunction {
 
8
 
 
9
        public CmdTravelingSalesman(Kernel kernel) {
 
10
                super(kernel);
 
11
        }
 
12
 
 
13
        final protected GeoElement doCommand(String a, GeoList b)
 
14
        {
 
15
                return kernel.TravelingSalesman(a, b);
 
16
        }
 
17
 
 
18
}