#include "etirm/etirmtypes.h"
#include "etirm/ItemNR.h"
#include "etirm/DiscreteLatentDist.h"
#include "etirm/ExamineeGrpCov.h"
#include <boost/random/mersenne_twister.hpp>
Go to the source code of this file.
Typedefs | |
typedef SCPPNT::Vector < etirm::Response > | ResponseVector |
Vector of item responses. | |
typedef etirm::DiscreteLatentDist < etirm::Real > | lvdist_type |
Class to hold information about discrete latent variable distribution. | |
typedef etirm::ExamineeGrpCov < ResponseVector, etirm::RealVector > | examinee_type |
Class to hold information about examinees. | |
typedef etirm::ItemNR < lvdist_type > | item_type |
Type used for array of items. | |
typedef boost::mt19937 | random_type |
Use the Mersenne Twister (http://www.math.keio.ac.jp/matumoto/emt.html) from the Boost random number library (http://www.boost.org/libs/random/index.html) as random number generator for bootstrap samples. |
Estimation Toolkit for Item Response Models (ETIRM) http://www.smallwaters.com/software/cpp/etirm.html
Author(s): Werner Wothke, maintenance (http://www.smallwaters.com) Brad Hanson (http://www.b-a-h.com/) See the file LICENSE for information on usage and redistribution.
Copyright (C) 2008, Werner Wothke Copyright (c) 2000-2001, Bradley A. Hanson
Definition in file swig_etirm_types.h.
typedef etirm::ItemNR<lvdist_type> item_type |
Type used for array of items.
Using ItemNR allows different items to be modeled by different classes descendent from ItemNR (e.g., the 3PL model could be used for some items, and the 2PL model used for other items).
Definition at line 56 of file swig_etirm_types.h.
Class to hold information about discrete latent variable distribution.
Definition at line 43 of file swig_etirm_types.h.
typedef boost::mt19937 random_type |
Use the Mersenne Twister (http://www.math.keio.ac.jp/matumoto/emt.html) from the Boost random number library (http://www.boost.org/libs/random/index.html) as random number generator for bootstrap samples.
Definition at line 64 of file swig_etirm_types.h.
typedef SCPPNT::Vector<etirm::Response> ResponseVector |