Back to feed
Renewal·마흔의 생활코딩

Abstracting Loop Engineering

NS
normalstory
cover image

To help make sense of loop engineering—the latest trend, perhaps? ^^—I think it can ultimately be abstracted as follows:
Loop = State + Planner + Executor + Evaluator + Reducer + Stop Policy

while (!stopPolicy.check(state)) {
    Action action = planner.decide(state);
    Result result = executor.execute(action);
    Evaluation evaluation = evaluator.evaluate(state, action, result);
    state = reducer.update(state, evaluation);
    memory.save(state);
}

친절한 찰쓰씨
Written by
친절한 찰쓰씨

Pleasant Charles — UI/UX researcher at AIT. Keeping notes on design, planning, and slow days here since 2010.

More on the author's page

Keep reading

Renewal

The Most Important Thing About AX

Jul 17, 2026·2 min
Renewal

디지털 기술과 혁신에 대한 논고(지탱하는 힘)

Jul 17, 2026·5 min
Renewal

전기는 등장 이후 40년이라는 무르익을 시간이 필요했다(AI 경제학)

Jun 2, 2026·4 min