kubernetes simple 源码

  • 2022-09-18
  • 浏览 (404)

kubernetes simple 代码

文件路径:/third_party/forked/gonum/graph/simple/simple.go

// Copyright ©2014 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package simple provides a suite of simple graph implementations satisfying
// the gonum/graph interfaces.
package simple

import (
	"math"

	"k8s.io/kubernetes/third_party/forked/gonum/graph"
)

// Node is a simple graph node.
type Node int

// ID returns the ID number of the node.
func (n Node) ID() int {
	return int(n)
}

// Edge is a simple graph edge.
type Edge struct {
	F, T graph.Node
	W    float64
}

// From returns the from-node of the edge.
func (e Edge) From() graph.Node { return e.F }

// To returns the to-node of the edge.
func (e Edge) To() graph.Node { return e.T }

// Weight returns the weight of the edge.
func (e Edge) Weight() float64 { return e.W }

// maxInt is the maximum value of the machine-dependent int type.
const maxInt int = int(^uint(0) >> 1)

// isSame returns whether two float64 values are the same where NaN values
// are equalable.
func isSame(a, b float64) bool {
	return a == b || (math.IsNaN(a) && math.IsNaN(b))
}

相关信息

kubernetes 源码目录

相关文章

kubernetes directed_acyclic 源码

kubernetes directed_acyclic_test 源码

kubernetes edgeholder 源码

kubernetes edgeholder_test 源码

kubernetes undirected 源码

kubernetes undirected_test 源码

0  赞