LINE Solver (C++)
Templated C++ port of the LINE queueing solver
Loading...
Searching...
No Matches
param_estimator.h File Reference

Sample collection and estimator orchestration for queueing-network parameters. More...

#include <algorithm>
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <functional>
#include <limits>
#include <map>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "line/api/infer/infer_compute_ql_at_arrival.h"
#include "line/api/infer/infer_fmlps.h"
#include "line/api/infer/infer_gibbs.h"
#include "line/api/infer/infer_mlps.h"
#include "line/api/infer/infer_qmle.h"
#include "line/api/infer/infer_variational.h"
#include "line/api/sn/sn_rt_stations.h"
#include "line/inference/sampled_metric.h"
#include "line/lang/dist_scale_rate.h"
#include "line/lang/qn/network_builder.h"
#include "line/solvers/mva/solver_mva_runner.h"
#include "line/util/error.h"
#include "line/util/lu.h"
#include "line/util/matrix.h"
#include "line/util/neldermead.h"
Include dependency graph for param_estimator.h:

Go to the source code of this file.

Classes

struct  line::infer::EstimatorOptions
class  line::infer::ParamEstimator

Namespaces

namespace  line
namespace  line::infer

Detailed Description

Sample collection and estimator orchestration for queueing-network parameters.

This is the workflow contract of MATLAB ParamEstimator: sampled metrics are stored by 1-based node and class, aggregate metrics have their own node row, interpolation aligns every series on the union of timestamps, auto_method applies the reference precedence, and estimate_at writes inferred means back into the model. Estimators are typed callables; all eleven MATLAB methods are installed by default.

Definition in file param_estimator.h.