/************************************
 * WhereAmI main.cpp
 *
 * Put your solution code here.  Feel free to modify the main function as
 * you see fit, but do keep in mind that we've tried to make user input as
 * nice as possible.
 */

#include "WhereAmI.h"

int main()
{
	cout << "Welcome to CS106L Where Am I?" << endl;

	/* These two functions read in the distances from your location to
	 * the points and the points themselves.
	 */
	vector<double> distances = ReadDistances();
	vector<pointT> points    = ReadPoints(GetNumPoints(distances.size()));

	/* Using the provided GenerateAllGuesses function, come up with a list
	 * of all possible guesses.
	 */
	vector<vector<circleT> > allGuesses =
	  GenerateAllGuesses(points, distances);

	// TODO: Implement the algorithm!

	return 0;
}
