We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f427ad commit 4d98d8dCopy full SHA for 4d98d8d
src/Sim/loop.jl
@@ -27,6 +27,15 @@ struct CatLoop{CatEngineT} <: CatConfigBase
27
new_response_callback
28
end
29
30
+function show(io::IO, ::MIME"text/plain", rules::CatLoop)
31
+ print(io, "Next item rule: ")
32
+ show(io, MIME("text/plain"), rules.next_item)
33
+ print(io, "Termination condition: ")
34
+ show(io, MIME("text/plain"), rules.termination_condition)
35
+ print(io, "Ability estimator: ")
36
+ show(io, MIME("text/plain"), rules.ability_estimator)
37
+end
38
+
39
function CatLoop(;
40
rules,
41
get_response,
0 commit comments