Skip to content

Commit

Permalink
clang-format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedKISSI committed Jul 4, 2024
1 parent ec8d84f commit b8c6768
Show file tree
Hide file tree
Showing 5 changed files with 885 additions and 650 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,44 +53,44 @@ namespace ttk {
return this->distances;
}

void setTimeLimit(double timeLimit){
void setTimeLimit(double timeLimit) {
this->TimeLimit = timeLimit;
}

void setForceUseOfAlgorithm(bool forceUseOfAlgorithm){
void setForceUseOfAlgorithm(bool forceUseOfAlgorithm) {
this->ForceUseOfAlgorithm = forceUseOfAlgorithm;
}

void setDeltaLim(double DeltaLimNew){
void setDeltaLim(double DeltaLimNew) {
this->DeltaLim = DeltaLimNew;
}

void setUseAdditionalPrecision(bool Precision){
void setUseAdditionalPrecision(bool Precision) {
this->UseAdditionalPrecision = Precision;
}

void setUseProgressive(bool UseProgressive_){
void setUseProgressive(bool UseProgressive_) {
this->UseProgressive = UseProgressive_;
}

void setUseInterruptible(bool UseInterruptible_){
void setUseInterruptible(bool UseInterruptible_) {
this->UseInterruptible = UseInterruptible_;
}

void setDeterministic(bool Deterministic_){
void setDeterministic(bool Deterministic_) {
this->Deterministic = Deterministic_;
}

void setAlpha(double Alpha_){
void setAlpha(double Alpha_) {
this->Alpha = Alpha_;
}

void setUseAccelerated(bool UseAccelerated_){
this->UseAccelerated = UseAccelerated_;
void setUseAccelerated(bool UseAccelerated_) {
this->UseAccelerated = UseAccelerated_;
}

void setUseKmeansppInit(bool UseKmeansppInit_){
this->UseKmeansppInit = UseKmeansppInit_;
void setUseKmeansppInit(bool UseKmeansppInit_) {
this->UseKmeansppInit = UseKmeansppInit_;
}

protected:
Expand Down
Loading

0 comments on commit b8c6768

Please sign in to comment.