summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl26
1 files changed, 0 insertions, 26 deletions
diff --git a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
deleted file mode 100644
index dc120b38783..00000000000
--- a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
+++ /dev/null
@@ -1,26 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE CORBA::Float
-TAO_LB_LoadMinimum::effective_load (CORBA::Float previous_load,
- CORBA::Float new_load)
-{
- // Apply per-balance load. (Recompute raw load)
- previous_load += this->per_balance_load_;
-
- // Apply dampening. (Recompute new raw load)
- CORBA::Float result =
- this->dampening_ * previous_load + (1 - this->dampening_) * new_load;
-
- ACE_ASSERT (this->tolerance_ != 0);
-
- // Compute the effective load.
- result /= this->tolerance_;
-
- return result;
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL