pub struct ExplorationSpaceV2<N, E, S, R, M, Sel>where
N: Debug + Clone,
E: Debug + Clone,
S: MapState,
R: Rules,
M: MutationLogic<N, E, S, R>,
Sel: SelectionLogic<N, E, S>,{ /* private fields */ }Expand description
探索空間 V2 - 統合レイヤー
GraphMap と Operator を統合する。 ロジックは持たず、コンポーネントを繋ぐだけ。
§型パラメータ
N: ノードデータの型E: エッジデータの型S: 状態の型R: 遷移ルールの型(Rulesを実装)M: Mutation ロジックSel: Selection ロジック
Implementations§
Source§impl<N, E, S, R, M, Sel> ExplorationSpaceV2<N, E, S, R, M, Sel>where
N: Debug + Clone,
E: Debug + Clone,
S: MapState + Default,
R: Rules + 'static,
M: MutationLogic<N, E, S, R>,
Sel: SelectionLogic<N, E, S>,
impl<N, E, S, R, M, Sel> ExplorationSpaceV2<N, E, S, R, M, Sel>where
N: Debug + Clone,
E: Debug + Clone,
S: MapState + Default,
R: Rules + 'static,
M: MutationLogic<N, E, S, R>,
Sel: SelectionLogic<N, E, S>,
Sourcepub fn with_dependency_graph(self, graph: DependencyGraph) -> Self
pub fn with_dependency_graph(self, graph: DependencyGraph) -> Self
DependencyGraph を設定
Sourcepub fn with_actions_config(self, config: ActionsConfig) -> Self
pub fn with_actions_config(self, config: ActionsConfig) -> Self
ActionsConfig を設定
Sourcepub fn create_root(&mut self, data: N) -> MapNodeId
pub fn create_root(&mut self, data: N) -> MapNodeId
ルートノードを作成
Sourcepub fn apply(
&mut self,
input: &dyn MutationInput,
stats: &SwarmStats,
) -> Vec<MapUpdateResult>
pub fn apply( &mut self, input: &dyn MutationInput, stats: &SwarmStats, ) -> Vec<MapUpdateResult>
入力を適用(Operator に委譲)
Note: 統計は ActionEventPublisher 経由で別途記録されるため、 この関数では統計を更新しない。SwarmStats は Mutation に渡される。
Sourcepub fn select(&self, count: usize, stats: &SwarmStats) -> Vec<MapNodeId>
pub fn select(&self, count: usize, stats: &SwarmStats) -> Vec<MapNodeId>
次のノードを選択(Operator に委譲)
Sourcepub fn next(&self, stats: &SwarmStats) -> Option<MapNodeId>
pub fn next(&self, stats: &SwarmStats) -> Option<MapNodeId>
次のノードを1つ選択(Operator に委譲)
Sourcepub fn score(
&self,
action: &str,
target: Option<&str>,
stats: &SwarmStats,
) -> f64
pub fn score( &self, action: &str, target: Option<&str>, stats: &SwarmStats, ) -> f64
ノードの優先度スコアを取得(Operator に委譲)
Sourcepub fn select_nodes(
&self,
count: usize,
stats: &SwarmStats,
) -> Vec<&MapNode<N, S>>
pub fn select_nodes( &self, count: usize, stats: &SwarmStats, ) -> Vec<&MapNode<N, S>>
次のノードを選択し、MapNode ごと返す
Sourcepub fn initialize(&mut self, initial_contexts: &[&str]) -> Vec<MapUpdateResult>
pub fn initialize(&mut self, initial_contexts: &[&str]) -> Vec<MapUpdateResult>
初期ノードを展開(Operator に委譲)
Sourcepub fn get_node_data(&self, ids: &[MapNodeId]) -> Vec<&N>
pub fn get_node_data(&self, ids: &[MapNodeId]) -> Vec<&N>
複数ノードのデータを一括取得
Sourcepub fn node_count(&self) -> usize
pub fn node_count(&self) -> usize
ノード数
Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
探索が完了したか(Operator に委譲)
Sourcepub fn has_completed(&self) -> bool
pub fn has_completed(&self) -> bool
成功で完了したか(外部からマーク済みの場合)
Sourcepub fn mark_completed(&mut self)
pub fn mark_completed(&mut self)
成功として完了をマーク
Sourcepub fn is_exhausted(&self) -> bool
pub fn is_exhausted(&self) -> bool
フロンティアが枯渇したか
Sourcepub fn operator_mut(&mut self) -> &mut Operator<M, Sel, N, E, S, R>
pub fn operator_mut(&mut self) -> &mut Operator<M, Sel, N, E, S, R>
Operator への可変参照
Sourcepub fn dependency_graph(&self) -> Option<&DependencyGraph>
pub fn dependency_graph(&self) -> Option<&DependencyGraph>
DependencyGraph への参照
Sourcepub fn operator_name(&self) -> String
pub fn operator_name(&self) -> String
Operator 名
Auto Trait Implementations§
impl<N, E, S, R, M, Sel> Freeze for ExplorationSpaceV2<N, E, S, R, M, Sel>
impl<N, E, S, R, M, Sel> !RefUnwindSafe for ExplorationSpaceV2<N, E, S, R, M, Sel>
impl<N, E, S, R, M, Sel> Send for ExplorationSpaceV2<N, E, S, R, M, Sel>
impl<N, E, S, R, M, Sel> Sync for ExplorationSpaceV2<N, E, S, R, M, Sel>
impl<N, E, S, R, M, Sel> Unpin for ExplorationSpaceV2<N, E, S, R, M, Sel>
impl<N, E, S, R, M, Sel> !UnwindSafe for ExplorationSpaceV2<N, E, S, R, M, Sel>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more