代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/168845/5433205
cpp testdate.cpp
/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
* Use, modification and distribution is subject to the
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE-1.0 or http
www.eeworm.com/read/168845/5433213
cpp testformatters.cpp
/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
* Use, modification and distribution is subject to the
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE-1.0 or http
www.eeworm.com/read/165570/5481222
java inverse.java
public class Inverse
{
/** Attempts to compute 1/a or return 0.0, otherwise. */
public float inverse(float a)
{
try
{
float temp = 1 / a;
if (temp == Float.POSITIVE_INFINITY)
www.eeworm.com/read/162614/5537321
java pr15769.java
class PR15769 {
private boolean foo () { return false; }
public boolean bar (double blaz)
{
return (Double.POSITIVE_INFINITY != blaz) && foo ();
www.eeworm.com/read/162614/5537427
cc natdouble.cc
// natDouble.cc - Implementation of java.lang.Double native methods.
/* Copyright (C) 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation
This file is part of libgcj.
This softwar
www.eeworm.com/read/162519/5546853
java pr15769.java
class PR15769 {
private boolean foo () { return false; }
public boolean bar (double blaz)
{
return (Double.POSITIVE_INFINITY != blaz) && foo ();
www.eeworm.com/read/162519/5546959
cc natdouble.cc
// natDouble.cc - Implementation of java.lang.Double native methods.
/* Copyright (C) 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation
This file is part of libgcj.
This softwar
www.eeworm.com/read/472935/6860175
c algo7-6.c
/* algo7-6.c 实现算法7.15的程序。迪杰斯特拉算法的实现 */
#include"c1.h"
#define MAX_NAME 5 /* 顶点字符串的最大长度+1 */
#define MAX_INFO 20 /* 相关信息字符串的最大长度+1 */
typedef int VRType;
typedef char InfoType;
typedef cha
www.eeworm.com/read/195191/8170176
txt dynamic.txt
#define minloop 3 //The minimum substructure with a basepair possible
//This is the dynamic algorithm of Zuker:
void dynamic(structure* ct, datatable* data, int cntrl6, int cntrl8, int cntrl9,
www.eeworm.com/read/293882/8266835
cpp algo7-6.cpp
// algo7-6.cpp 实现算法7.15的程序。迪杰斯特拉算法的实现
#include"c1.h"
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char InfoType;
typedef char Verte