Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pub record log #32

Merged
merged 2 commits into from
Oct 9, 2024
Merged
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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod scheduler_longterm;
pub use scheduler_longterm::LongtermScheduler;

mod models;
pub use models::{Card, Rating, ReviewLog, SchedulingInfo, State};
pub use models::{Card, Rating, RecordLog, ReviewLog, SchedulingInfo, State};

mod parameters;
pub use crate::parameters::Parameters;
Expand Down
8 changes: 3 additions & 5 deletions src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,9 @@ impl Scheduler {

pub trait ImplScheduler {
fn preview(&mut self) -> RecordLog {
let mut log = RecordLog::new();
for rating in Rating::iter() {
log.insert(*rating, self.review(*rating));
}
log
Rating::iter()
.map(|&rating| (rating, self.review(rating)))
.collect()
}
fn review(&mut self, rating: Rating) -> SchedulingInfo;
}
Loading