代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/110972/6161088
h crypt_random.h
/*
* Copyright (c) 1993 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted p
www.eeworm.com/read/102395/6233460
h random_point.h
/*******************************************************************************
+
+ LEDA 4.5
+
+
+ RANDOM_POINT.h
+
+
+ Copyright (c) 1995-2004
+ by Algorithmic Solutions Software GmbH
+ All r
www.eeworm.com/read/101990/6234834
c test-random.c
/*
* $Id: test-random.c,v 1.3 2002/04/19 14:23:28 aet Exp $
*
* Copyright (C) 2002
* Antti Tapaninen
*
* This program is free software; you can redistribute it and/or modify
www.eeworm.com/read/100285/6271576
h geqo_random.h
/*-------------------------------------------------------------------------
*
* geqo_random.h
* random number generator
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id
www.eeworm.com/read/408798/6289749
m opt_random.m
n=0;
t=zeros(1,30);
d = randint(1,30,[1,10]);
for j=1:30
if d(1,j)
www.eeworm.com/read/326419/6289849
v random_tp.v
`timescale 10ns/1ns
module random_tp;
integer data;
integer i;
parameter delay=10;
initial $monitor($time,,,"data=%b",data);
initial
begin
for(i=0; i
www.eeworm.com/read/252441/6298515
v random_tp.v
`timescale 10ns/1ns
module random_tp;
integer data;
integer i;
parameter delay=10;
initial $monitor($time,,,"data=%b",data);
initial
begin
for(i=0; i
www.eeworm.com/read/148294/6322558
h random_utils.h
#ifndef _RANDOM_UTILS_H_
#define _RANDOM_UTILS_H_
/**
* Utilities for generating random numbers,
* distributed uniformly and as a gaussian
*/
double RandomDouble(double min, double max);
int Rand
www.eeworm.com/read/148294/6322559
cpp random_utils.cpp
#include "random_utils.h"
#include
#include
/**
* return a random, uniformly distributed int between min and max
* [min, max)
*/
int RandomInt(int min, int max)
{
double r =