#!python

import sys
from hpp.corbaserver import Client

try:
    cl = Client(context=sys.argv[1])
except IndexError:
    cl = Client()
cl.problem.interruptPathPlanning()
