Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for awslc

Hello guys, I (attempted to) incorporate the alpha-beta pruning functionality with Negamax in C# and was wondering if you could review my included code for any obvious errors? Negamax Function: public int NegaMax(int[,] board, int depth, int alpha, int beta) { Interlocked.Increment(ref _negaMaxCtr); if (depth == 0) { Interlocked.Increment(ref _zeroCtr); …

0
246
Member Avatar for awslc

Hi everybody, Wondering if you could give me some help with an error I have with NuSoap and my C# .NET project. I am trying to return an array of arrays from my PHP NuSoap Web Service to my .NET application. My PHP Code: $server->wsdl->addComplexType( 'GraphData', 'complexType', 'struct', 'all', '', …

Member Avatar for pritaeas
0
172
Member Avatar for awslc

Hey guys, Just wondering if you could assist me quickly with some validation. I have some strings in for the format: MM:SS.mm Where MM = Minutes, SS = Seconds, mm = Milliseconds. I'm just wondering whether you can help me with how to validate to ensure an input string is …

Member Avatar for awslc
0
317
Member Avatar for awslc

Hello there. I am wondering whether you'd be able to check this ER diagram for me please for an online job service for university students? I have it constructed but I get anxious with these things and am looking for tips on whether my design is currently accurate. [url]http://www.daniweb.com/forums/attachment.php?attachmentid=18943&stc=1&d=1295818361[/url] Thanks …

Member Avatar for crfraser
0
1K