A brute-force algorithm for the traveling salesman problem has a complexity of approximately O(N!).
That means, for example, that 10 items have approximately 3,628,800 combinations for you to check. Just for the sake of discussion, let's say your computer can complete that in half a second.
In this case, you're trying to solve with 16 points. That's less than twice as big, so it doesn't seem like it should take a whole lot longer, right? In fact, 16! is 20,922,789,888,000. If the job took 0.5 second for 10 items, it should take about 5,765,760 * .5 seconds, which works out to about 33.4 days--i.e., running for 24 hours a day for more than a month.
Of course, the half a second time is just a guess--if it was only a tenth of a second, then we'd expect the 16-item version to take only about a week. On the other hand, if it was really closer to a whole second, then the 16-item task should take a couple months or so.