Definition at line 57 of file samplers.py.
 
◆ __init__()
      
        
          | def python.samplers.ModUniformSampler.__init__ | ( |  | self, | 
        
          |  |  |  | low, | 
        
          |  |  |  | high | 
        
          |  | ) |  |  | 
      
 
Definition at line 60 of file samplers.py.
   61         assert(low == abs(low) 
and high == abs(high))
 
   64         self.high = 
float(high)
 
 
 
 
◆ __call__()
  
  | 
        
          | def python.samplers.Sampler.__call__ | ( |  | self | ) |  |  | inherited | 
 
This is the call method that will actually be used (so that normal
functions can also be passed in as samplers).
 
Definition at line 17 of file samplers.py.
   18         """This is the call method that will actually be used (so that normal 
   19         functions can also be passed in as samplers).""" 
 
 
 
◆ shoot()
      
        
          | def python.samplers.ModUniformSampler.shoot | ( |  | self | ) |  | 
      
 
 
◆ high
      
        
          | python.samplers.ModUniformSampler.high | 
      
 
 
◆ low
      
        
          | python.samplers.ModUniformSampler.low | 
      
 
 
The documentation for this class was generated from the following file: