run rustfmt

This commit is contained in:
Skgland
2026-03-21 14:24:13 +01:00
parent 153f04b72a
commit 833c3bd77f
2 changed files with 1 additions and 6 deletions

View File

@@ -16,7 +16,6 @@ use crate::parser::ast::*;
use crate::read::TermWriteResult; use crate::read::TermWriteResult;
use crate::types::*; use crate::types::*;
use indexmap::IndexMap; use indexmap::IndexMap;
use std::convert::TryFrom; use std::convert::TryFrom;

View File

@@ -234,11 +234,7 @@ impl Machine {
/// Gets the current inference count. /// Gets the current inference count.
pub fn get_inference_count(&mut self) -> u64 { pub fn get_inference_count(&mut self) -> u64 {
self.machine_st self.machine_st.cwil.global_count.try_into().unwrap()
.cwil
.global_count
.try_into()
.unwrap()
} }
/// Runs the predicate `key` in `module_name` until completion. /// Runs the predicate `key` in `module_name` until completion.