#include <iostream>
#include "LIC.h"

using namespace std;

void main(int argc, char ** argv)
{
  LIC N;
  N.set(argc, argv);
  cout <<"\nFinished parsing command line" << endl;

  cout << "\nComputing LIC . . . " << endl;
  N.doLIC();
  cout << "\nFinished Computing LIC" << endl;
  
  cout << "\nWriting out file" << endl;
  N.writeFile();
}
