[clangd] Remove "decision-forest-base" experimental flag.

The value of this flag can only be fine tuned by using A/B testing on large
user base.
We do not expect individual users to use and fine tune this flag.

Differential Revision: https://reviews.llvm.org/D94513
This commit is contained in:
Utkarsh Saxena 2021-01-12 17:14:08 +01:00
parent 17863614da
commit a4f3866882
1 changed files with 0 additions and 9 deletions

View File

@ -194,14 +194,6 @@ opt<CodeCompleteOptions::CodeCompletionRankingModel> RankingModel{
Hidden,
};
opt<float> DecisionForestBase{
"decision-forest-base",
cat(Features),
desc("Base for exponentiating the prediction from DecisionForest."),
init(CodeCompleteOptions().DecisionForestBase),
Hidden,
};
// FIXME: also support "plain" style where signatures are always omitted.
enum CompletionStyleFlag { Detailed, Bundled };
opt<CompletionStyleFlag> CompletionStyle{
@ -841,7 +833,6 @@ clangd accepts flags on the commandline, and in the CLANGD_FLAGS environment var
Opts.CodeComplete.AllScopes = AllScopesCompletion;
Opts.CodeComplete.RunParser = CodeCompletionParse;
Opts.CodeComplete.RankingModel = RankingModel;
Opts.CodeComplete.DecisionForestBase = DecisionForestBase;
RealThreadsafeFS TFS;
std::vector<std::unique_ptr<config::Provider>> ProviderStack;