Skip to content
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
Empty file removed src/core/matrix.imp
Empty file.
19 changes: 9 additions & 10 deletions src/solvers/logit/logit.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,15 @@ using MixedStrategyObserverFunctionType =

inline void NullMixedStrategyObserver(const LogitQREMixedStrategyProfile &) {}

std::list<LogitQREMixedStrategyProfile>
LogitStrategySolve(const LogitQREMixedStrategyProfile &p_start, double p_regret, double p_omega,
double p_firstStep, double p_maxAccel,
MixedStrategyObserverFunctionType p_observer = NullMixedStrategyObserver);

std::list<LogitQREMixedStrategyProfile>
LogitStrategySolveLambda(const LogitQREMixedStrategyProfile &p_start,
const std::list<double> &p_targetLambda, double p_omega,
double p_firstStep, double p_maxAccel,
MixedStrategyObserverFunctionType p_observer = NullMixedStrategyObserver);
std::list<LogitQREMixedStrategyProfile> LogitStrategySolve(
const LogitQREMixedStrategyProfile &p_start, double p_regret, double p_omega,
double p_firstStep, double p_maxAccel,
const MixedStrategyObserverFunctionType &p_observer = NullMixedStrategyObserver);

std::list<LogitQREMixedStrategyProfile> LogitStrategySolveLambda(
const LogitQREMixedStrategyProfile &p_start, const std::list<double> &p_targetLambda,
double p_omega, double p_firstStep, double p_maxAccel,
const MixedStrategyObserverFunctionType &p_observer = NullMixedStrategyObserver);

LogitQREMixedStrategyProfile
LogitStrategyEstimate(const MixedStrategyProfile<double> &p_frequencies, double p_maxLambda,
Expand Down
Loading