summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2026-08-24 19:31:36 -0700
committerScott Gasch <[email protected]>2026-08-24 19:31:36 -0700
commit29d73f4dd59554a349aa8e86e5ea65f28c912ec9 (patch)
tree05e8dcbe6eb3c2f6d8bfd7c8065c250b2734254c /src/main.c
parentc5ca1a37b0614f5cb55499692a7f61775f81d1eb (diff)
Started doing texel eval tuning.
Diffstat (limited to 'src/main.c')
-rwxr-xr-xsrc/main.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 1247311..01c8d26 100755
--- a/src/main.c
+++ b/src/main.c
@@ -295,7 +295,7 @@ Return value:
g_Options.fNoInputThread = FALSE;
g_Options.fVerbosePosting = TRUE;
strcpy(g_Options.szEGTBPath, "/zscratch/egtb");
- strcpy(g_Options.szLogfile, "typhoon.log");
+ strcpy(g_Options.szLogfile, "/usr/local/tmp/typhoon.log");
strcpy(g_Options.szBookName, "book.bin");
g_Options.uNumHashTableEntries = 0x10000;
g_Options.uNumProcessors = 1;
@@ -356,9 +356,9 @@ Return value:
{
g_Options.fNoInputThread = TRUE;
}
- else if ((!STRCMPI(argv[i], "--dnafile")) && (argc > i))
+ else if ((!STRCMPI(argv[i], "--dnafile")) && (argc > i))
{
- if (!ReadEvalDNA(argv[i+1]))
+ if (!ReadEvalDNA(argv[i+1]))
{
UtilPanic(INITIALIZATION_FAILURE,
(void *)"Bad DNA file",
@@ -367,6 +367,10 @@ Return value:
NULL,
__FILE__, __LINE__);
}
+ else
+ {
+ Trace("Loaded dna file \"%s\"\n", argv[i+1]);
+ }
i++;
}
else if ((!STRCMPI(argv[i], "--logfile")) && (argc > i))