MULTI_NODE_SIM_BASE_CONFIG

Fast timing config for MultiNodeRaftSim tests — elections fire in single-digit virtual ms, so a 3-node leader election completes in ≤ 20 ms of virtual time.

RaftConfig.random is left as Random.Default here; MultiNodeRaftSim overrides it per-node with Random(baseSeed + nodeIndex) so each node draws a distinct election timeout and symmetry-breaking works correctly. The RaftConfig.expectVirtualTime flag suppresses the real-dispatcher guard for tests running under a kotlinx.coroutines.test.TestDispatcher.

Never use this config in production — fast timings are meaningless on real networks and RaftConfig.expectVirtualTime suppresses a safety guard.