pub(crate) struct RunArgs {
pub(crate) source: PathBuf,
pub(crate) device: usize,
pub(crate) memory_mb: u64,
pub(crate) input: Vec<String>,
pub(crate) output: OutputFormat,
pub(crate) output_dir: Option<PathBuf>,
pub(crate) stats: bool,
pub(crate) stats_format: StatsFormat,
pub(crate) module_path: Vec<PathBuf>,
pub(crate) epistemic_plan_json: Option<PathBuf>,
pub(crate) wcoj: bool,
}Fields§
§source: PathBuf§device: usize§memory_mb: u64§input: Vec<String>§output: OutputFormat§output_dir: Option<PathBuf>§stats: boolShow execution statistics (timing, memory usage)
stats_format: StatsFormatStats output format (human or json)
module_path: Vec<PathBuf>Additional directories to search for modules (colon-separated)
epistemic_plan_json: Option<PathBuf>Dump the compiled epistemic execution plan (EIR-derived GPU plan, world-view
integrity constraints, and fail-closed execution policy) as JSON to this path.
No-op for ordinary (non-epistemic) programs. This compiled
epistemic-plan/EIR JSON dump exposes accepted know/possible literals
and lets a caller verify that unsupported execution shapes are rejected.
wcoj: boolEngage the worst-case-optimal join (WCOJ) subsystem for eligible multiway rules (triangle + 4-cycle). Without this the deterministic runner uses binary joins, which blow up on skewed cyclic queries. Sets the documented WCOJ dispatch gates for this process.
Trait Implementations§
Source§impl Args for RunArgs
impl Args for RunArgs
Source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
ArgGroup::id][crate::ArgGroup::id] for this set of argumentsSource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command] so it can instantiate self via
[FromArgMatches::update_from_arg_matches_mut] Read moreSource§impl FromArgMatches for RunArgs
impl FromArgMatches for RunArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.