/*
 *  test_spike_transmission_ps_iaf.sli
 *
 *  This file is part of NEST.
 *
 *  Copyright (C) 2004 The NEST Initiative
 *
 *  NEST is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  NEST is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with NEST.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

/* Testscript 
  
checks for consistent calculation of time stamps in 
poisson_generator_ps. 
This test exhibited the problem described in ticket #157

*/

/unittest (6688) require
/unittest using


/T 3.0 def   


/Transmission
{
 /h Set

ResetKernel

0 << 
      /resolution h
     >> SetStatus

/iaf_neuron Create /n Set
 
/poisson_generator_ps Create /p Set
p << /rate  10000. >> SetStatus

p n Connect

T Simulate 

} def


[0.1 0.01 0.001]
{
 Transmission
} forall