Thursday, November 6, 2008

Searchin'

I'm gonna move back to the search engine part of my project, but first...I had an idea for collecting pages to mine. If I increment through IP URLs, and look at the response each gives I can categorize them and store in a DB. This gives a big basis for looking around without running into a wall.

So I changed the part where:

if(affinity>=highest)

to:

if (affinity>=highest)
{
highest=affinity;
affinityTwin=whatever;
}

because I made the rookie mistake of not changing affinity to the current highest value when trying to find the highest of all values in a list.


So I've got the AI components going on. It's a little bit Fuzzy Logic and a little bit Neural Net.
More on this later.

No comments: