提交 d12a2335 编写于 作者: M Matt Pharr

Fix format string error in HaltonSampler::Create()

Noted by @pbrt4bounty in #246.
上级 19336a6c
......@@ -81,7 +81,7 @@ HaltonSampler *HaltonSampler::Create(const ParameterDictionary &parameters,
else if (s == "permutedigits")
randomizer = RandomizeStrategy::PermuteDigits;
else if (s == "fastowen")
ErrorExit("%s: \"fastowen\" randomization not supported by Halton sampler.");
ErrorExit("\"fastowen\" randomization not supported by Halton sampler.");
else if (s == "owen")
randomizer = RandomizeStrategy::Owen;
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册