代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/215985/15031071
bas baswaves.bas
Attribute VB_Name = "basWaves"
Option Explicit
Declare Function GetTickCount Lib "kernel32" () As Long
Global Const PI = 3.14159265358979
Global Const INFINITY = 2147483647
Global Const m3Par
www.eeworm.com/read/229812/4750986
gml _finite.gml
.func _finite
#include
int _finite( double x );
.ixfunc2 '&Math' &func
.funcend
.desc begin
.ix 'infinity'
.ix 'NAN'
The &func function determines whether the double precision
float
www.eeworm.com/read/183001/5260283
out tinterval.out
--
-- TINTERVAL
--
CREATE TABLE TINTERVAL_TBL (f1 tinterval);
-- Should accept any abstime,
-- so do not bother with extensive testing of values
INSERT INTO TINTERVAL_TBL (f1)
VALUES ('["-infinity
www.eeworm.com/read/438717/1823389
py rec_play.py
#
# records an AIFF sample and plays it
# infinity number of times.
#
import time
import al
def recordit () :
p = al.openport('hello', 'r')
print 'recording...'
buf = p.readsamps(500000)
print '
www.eeworm.com/read/435707/1861149
c flt_rounds.c
/*
* Written by J.T. Conklin, Apr 10, 1995
* Public domain.
*/
#include
static const int map[] = {
1, /* round to nearest */
3, /* round to zero */
2, /* round to negative infinity *
www.eeworm.com/read/400494/2351558
h huge_val.h
/* `HUGE_VAL' constant for IEEE 754 machines (where it is infinity).
Used by and functions for overflow.
Copyright (C) 1992 Free Software Foundation, Inc.
This file is part of
www.eeworm.com/read/376006/2718049
out tinterval.out
--
-- TINTERVAL
--
CREATE TABLE TINTERVAL_TBL (f1 tinterval);
-- Should accept any abstime,
-- so do not bother with extensive testing of values
INSERT INTO TINTERVAL_TBL (f1)
VALUES ('["-infinity
www.eeworm.com/read/101715/15821906
out mainp.out
POLSYS1H TEST ROUTINE 7/7/95
TWO QUADRICS, NO SOLUTIONS AT INFINITY, TWO REAL SOLUTIONS.
IF IFLGHM=1, HOMOGENEOUS; IF IFLGHM=0, INHOMOGENEOUS; IFLGHM= 1
IF IFLGSC=1, SCLGNP USED
www.eeworm.com/read/292005/8383426
h jt.h
#ifndef JT_H
#define JT_H
#define False 0
#define True 1
#define INFINITY 10000
typedef struct
{
int number;
float expenditure;
int begintime[2];
int arrivetime[2];
} Vehide;
www.eeworm.com/read/427672/8926191
cpp 最小生成树.cpp
//最小生成树
#include
#define maxvertexnum 20
#define infinity 32768
typedef enum{DG,DN,UDG,UDN}GraphKind;
typedef struct ArcNode
{
int adj;
}ArcNode;
typedef struct
{
ch