You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
598 B
22 lines
598 B
/// Practice Engine - A pure Dart package for spaced repetition and practice tracking.
|
|
library practice_engine;
|
|
|
|
// Models
|
|
export 'models/deck.dart';
|
|
export 'models/deck_config.dart';
|
|
export 'models/question.dart';
|
|
export 'models/attempt.dart';
|
|
export 'models/attempt_result.dart';
|
|
export 'models/attempt_history_entry.dart';
|
|
export 'models/incomplete_attempt.dart';
|
|
|
|
// Services
|
|
export 'logic/deck_service.dart';
|
|
export 'logic/attempt_service.dart';
|
|
|
|
// Algorithms
|
|
export 'algorithms/weighted_selector.dart';
|
|
export 'algorithms/spaced_repetition.dart';
|
|
export 'algorithms/priority_manager.dart';
|
|
|