You would not count the root, so you would be one off...Cardoso wrote:How about counting only at a single place: MakeMove() ?
Alvaro
I guess some people have a different MakeMove for null moves, that could also be a reason.
Moderator: Ras
You would not count the root, so you would be one off...Cardoso wrote:How about counting only at a single place: MakeMove() ?
Alvaro
That is what I have been doing. However, I am changing it. If you do not care to count as nodes every time you make a move to test its legality, this may be very simple. However, I was doing makemoves-- every time time a move was rejected. I found that spread all over my code (for instance, when I test SAN moves etc). Now I do this:Cardoso wrote:How about counting only at a single place: MakeMove() ?
Alvaro
Code: Select all
loop moves {
if (!makemove_verify(move)) {
continue; /* move rejected*/
}
makemoves++;
search ();
etc.
}
I cannot see why this may cause a problem. It links to a university website.hgm wrote:Could you fix your avatar so that I don't get a popup asking me if I want to see pages over a secure connection, each time I open a thread you posted in?
It's the "https:" in the link, that causes the popup hgm doesn't like. "https:" means a "secure" connection over SSH, instead of a regular HTTP connection. His browser is trying to warn him because the page contains a mix of "secure" and "non-secure" things, which might be dangerous if the page was a credit card order form and he thought the whole thing was secured, but some important part of it was not. (Obviously in this case it doesn't matter -- in this case the warning is not useful, but he can't get rid of it without disabling it completely in his browser's settings.)michiguel wrote:I cannot see why this may cause a problem. It links to a university website.hgm wrote:Could you fix your avatar so that I don't get a popup asking me if I want to see pages over a secure connection, each time I open a thread you posted in?
Do you have the same problem when you try to access here?
https://www.msu.edu/~ballicor/gav/
I removed my image temporarily so you can test if that was a problem.
Miguel
Thanks!wgarvin wrote:It's the "https:" in the link, that causes the popup hgm doesn't like. "https:" means a "secure" connection over SSH, instead of a regular HTTP connection. His browser is trying to warn him because the page contains a mix of "secure" and "non-secure" things, which might be dangerous if the page was a credit card order form and he thought the whole thing was secured, but some important part of it was not. (Obviously in this case it doesn't matter -- in this case the warning is not useful, but he can't get rid of it without disabling it completely in his browser's settings.)michiguel wrote:I cannot see why this may cause a problem. It links to a university website.hgm wrote:Could you fix your avatar so that I don't get a popup asking me if I want to see pages over a secure connection, each time I open a thread you posted in?
Do you have the same problem when you try to access here?
https://www.msu.edu/~ballicor/gav/
I removed my image temporarily so you can test if that was a problem.
Miguel
If your university page won't allow "http:" links, maybe you could try uploading the avatar image to some free image hosting place and link to that?
Ok, I removed it. I will put the image somewhere else.hgm wrote:The problem is not fixed. I guess the redirect is automatic, as I don't see the https: in the URL when I right-click your avatar and ask for properties.
It is in a google site. It should be ok now, I think.michiguel wrote:Ok, I removed it. I will put the image somewhere else.hgm wrote:The problem is not fixed. I guess the redirect is automatic, as I don't see the https: in the URL when I right-click your avatar and ask for properties.
Miguel