Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 455 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 455 Bytes

rs-fsrs-java

Java binding for rs-fsrs, WIP.

Usage

see example

Develop

see Makefile

make java_run

TODO

make api more friendly.

ideal style

FSRS fsrs = new FSRS();
Card card = new Card();
ScheduledCards scheduled_cards = fsrs.schedule(card, Instant.now());
Card updatedCard = scheduled_cards.selectCard(Rating.Easy);
System.out.println(updatedCard.getLog().toString());