Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/hoars/src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ impl TryFrom<String> for Property {
"weak" => Ok(Property::Weak),
"very-weak" => Ok(Property::VeryWeak),
"inherently-weak" => Ok(Property::InherentlyWeak),
"terminatl" => Ok(Property::Terminal),
"terminal" => Ok(Property::Terminal),
"tight" => Ok(Property::Tight),
"colored" => Ok(Property::Colored),
unknown => Err(format!("{} is not a valid property", unknown)),
Expand Down
14 changes: 7 additions & 7 deletions crates/hoars/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ mod value;

pub mod label;
pub use label::{
AbstractLabelExpression, HoaAlphabet, HoaExpression, HoaRepr, HoaSymbol, Label,
LabelExpression, MAX_APS, build_vars,
build_vars, AbstractLabelExpression, HoaAlphabet, HoaExpression, HoaRepr, HoaSymbol, Label,
LabelExpression, MAX_APS,
};

use tracing::warn;
Expand All @@ -24,7 +24,7 @@ use ariadne::{Color, Fmt, ReportKind, Source};
use chumsky::prelude::*;
pub use format::*;

use chumsky::{Parser, prelude::Simple};
use chumsky::{prelude::Simple, Parser};
pub use format::{
AcceptanceCondition, AcceptanceInfo, AcceptanceName, AcceptanceSignature, AliasName, Property,
};
Expand Down Expand Up @@ -187,7 +187,7 @@ impl HoaRepresentation {
})
}

/// Returns the number of edges in the automaton.
/// Returns the start state conjunction.
pub fn start(&self) -> Vec<&StateConjunction> {
debug_assert!(
self.header()
Expand Down Expand Up @@ -453,11 +453,11 @@ mod tests {
use tracing::error;

use crate::{
AcceptanceAtom, AcceptanceCondition, AcceptanceName, AcceptanceSignature, Body, HeaderItem,
HoaRepresentation, StateConjunction,
body::{Edge, State},
header::Header,
label::AnonymousAbstract,
AcceptanceAtom, AcceptanceCondition, AcceptanceName, AcceptanceSignature, Body, HeaderItem,
HoaRepresentation, StateConjunction,
};

#[test]
Expand Down Expand Up @@ -491,7 +491,7 @@ mod tests {
let hoa_aut = HoaRepresentation::try_from(contents);

if let Err(err) = hoa_aut {
error!("Encountered paring error\n{}", err);
error!("Encountered parsing error\n{}", err);
return;
}

Expand Down