Subversion Repositories OpenSees

Rev

Rev 4817 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
291 mhscott 1
/* ****************************************************************** **
2
**    OpenSees - Open System for Earthquake Engineering Simulation    **
3
**          Pacific Earthquake Engineering Research Center            **
4
**                                                                    **
5
**                                                                    **
6
** (C) Copyright 2001, The Regents of the University of California    **
7
** All Rights Reserved.                                               **
8
**                                                                    **
9
** Commercial use of this program without express permission of the   **
10
** University of California, Berkeley, is strictly prohibited.  See   **
11
** file 'COPYRIGHT'  in main directory for information on usage and   **
12
** redistribution,  and for a DISCLAIMER OF ALL WARRANTIES.           **
13
**                                                                    **
14
** Developed by:                                                      **
15
**   Frank McKenna (fmckenna@ce.berkeley.edu)                         **
16
**   Gregory L. Fenves (fenves@ce.berkeley.edu)                       **
17
**   Filip C. Filippou (filippou@ce.berkeley.edu)                     **
18
**                                                                    **
19
** Reliability module developed by:                                   **
20
**   Terje Haukaas (haukaas@ce.berkeley.edu)                          **
21
**   Armen Der Kiureghian (adk@ce.berkeley.edu)                       **
22
**                                                                    **
23
** ****************************************************************** */
24
 
1334 fmk 25
// $Revision: 1.3 $
26
// $Date: 2003-03-04 00:39:54 $
291 mhscott 27
// $Source: /usr/local/cvs/OpenSees/SRC/reliability/analysis/stepSize/StepSizeRule.cpp,v $
28
 
29
 
30
//
1334 fmk 31
// Written by Terje Haukaas (haukaas@ce.berkeley.edu)
291 mhscott 32
//
33
 
34
#include <StepSizeRule.h>
35
 
36
StepSizeRule::StepSizeRule()
37
{
38
}
39
 
40
StepSizeRule::~StepSizeRule()
41
{
42
}
43
 
4817 mackie 44
int
4861 mackie 45
StepSizeRule::initialize()
46
{
4817 mackie 47
    return 0;
48
}
4861 mackie 49
 
50
int
51
StepSizeRule::getNumReductions()
52
{
53
        return 0;    
54
}