blob: 293a7199f86b42aed28b53acc4272ab897d592a7 [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_QUIC_CONGESTION_CONTROL_CUBE_ROOT_H_
#define NET_QUIC_CONGESTION_CONTROL_CUBE_ROOT_H_
#include "base/basictypes.h"
#include "net/base/net_export.h"
namespace net {
class NET_EXPORT_PRIVATE CubeRoot {
public:
// Calculates the cube root using a table lookup followed by one Newton-
// Raphson iteration.
static uint32 Root(uint64 a);
private:
DISALLOW_COPY_AND_ASSIGN(CubeRoot);
};
} // namespace net
#endif // NET_QUIC_CONGESTION_CONTROL_CUBE_ROOT_H_