On Thu, Aug 21, 2008 at 9:27 PM, Victor Ivri <[EMAIL PROTECTED]> wrote: > Right. I guess you need my IP?
I don't think so. I'll just forward the ports so anyone can connect. You might need mine, unless I can access the metaserver without problems. Though since I have a dynamic IP, I can't hand it out right now, it'll have changed by next week. > Interesting. I peeked into your code a couple of times, but frankly > couldn't really tell what was going on :). Is it some kind of > sat-solving? Mmm. It's a rule based system, kind of like an expert system. It's forward chaining, not backwards (like Prolog) so it's not entirely goal-driven. Facts are added, rules are triggered that add more facts. But to match the existing facts with the rules (to see if the rule applies), I use a finite domain solver. I'm not sure that all makes a lot of sense, but the basic idea is that the logic of my bot is listed in about 100 lines of code - pretty readable code even, once you work a bit with it. Mind you, there are still some bugs in it's behavior, but let's see if your bot can find them. ;) _______________________________________________ tp-devel mailing list [email protected] http://www.thousandparsec.net/tp/mailman.php/listinfo/tp-devel
