Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
major refactor
  • Loading branch information
prehner committed Apr 19, 2024
commit 7ef046f53d1c72021e925f7c87e067550487868f
4 changes: 2 additions & 2 deletions src/association/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use num_dual::*;
use num_traits::Zero;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt::{self, Display};
use std::fmt;
use std::sync::Arc;

#[cfg(feature = "dft")]
Expand Down Expand Up @@ -63,7 +63,7 @@ impl<A> AssociationRecord<A> {
}
}

impl<A: Display> fmt::Display for AssociationRecord<A> {
impl<A: fmt::Display> fmt::Display for AssociationRecord<A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "AssociationRecord(parameters={}", self.parameters)?;
if self.na > 0.0 {
Expand Down