1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
|
/* -------------------------------------------------------------------------- *
* Simbody(tm): SimTKcommon *
* -------------------------------------------------------------------------- *
* This is part of the SimTK biosimulation toolkit originating from *
* Simbios, the NIH National Center for Physics-Based Simulation of *
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org/home/simbody. *
* *
* Portions copyright (c) 2005-15 Stanford University and the Authors. *
* Authors: Michael Sherman *
* Contributors: *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may *
* not use this file except in compliance with the License. You may obtain a *
* copy of the License at http://www.apache.org/licenses/LICENSE-2.0. *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* -------------------------------------------------------------------------- */
/**@file
* Run the State class few some paces.
*/
#include "SimTKcommon.h"
#include <string>
#include <iostream>
#include <exception>
#include <cmath>
using std::cout;
using std::endl;
using std::string;
using namespace SimTK;
//void testLowestModified() {
// const SubsystemIndex Sub0(0), Sub1(1);
// State s;
// s.setNumSubsystems(2);
// SimTK_TEST(s.getSystemStage()==Stage::Empty);
// SimTK_TEST(s.getSubsystemStage(Sub0)==Stage::Empty && s.getSubsystemStage(Sub1)==Stage::Empty);
// SimTK_TEST(s.getLowestStageModified()==Stage::Topology);
//
// const DiscreteVariableIndex dvxModel = s.allocateDiscreteVariable(Sub1, Stage::Model, new Value<Real>(2));
//
// // "realize" Topology stage
// s.advanceSubsystemToStage(Sub0, Stage::Topology);
// s.advanceSubsystemToStage(Sub1, Stage::Topology);
// s.advanceSystemToStage(Stage::Topology);
// SimTK_TEST(s.getLowestStageModified()==Stage::Topology); // shouldn't have changed
//
// const DiscreteVariableIndex dvxInstance = s.allocateDiscreteVariable(Sub0, Stage::Instance, new Value<int>(-4));
//
// // A Model-stage variable must be allocated before Topology is realized, and this condition
// // should be tested even in Release mode.
// try {
// s.allocateDiscreteVariable(Sub0, Stage::Model, new Value<int>(0));
// SimTK_TEST(!"Shouldn't have allowed allocation of Model-stage var here");
// } catch (...) {}
//
// // "realize" Model stage
// s.advanceSubsystemToStage(Sub0, Stage::Model);
// s.advanceSubsystemToStage(Sub1, Stage::Model);
// s.advanceSystemToStage(Stage::Model);
// SimTK_TEST(s.getSystemStage() == Stage::Model);
//
// SimTK_TEST(s.getLowestStageModified()==Stage::Topology); // shouldn't have changed
// s.resetLowestStageModified();
// SimTK_TEST(s.getLowestStageModified()==Stage::Instance); // i.e., lowest invalid stage
//
// // This variable invalidates Instance stage, so shouldn't change anything now.
// SimTK_TEST(Value<int>::downcast(s.getDiscreteVariable(Sub0, dvxInstance))==-4);
// Value<int>::downcast(s.updDiscreteVariable(Sub0, dvxInstance)) = 123;
// SimTK_TEST(Value<int>::downcast(s.getDiscreteVariable(Sub0, dvxInstance))== 123);
//
// SimTK_TEST(s.getSystemStage()==Stage::Model);
// SimTK_TEST(s.getLowestStageModified()==Stage::Instance);
//
// // This variable invalidates Model Stage, so should back up the stage to Topology,
// // invalidating Model.
// Value<Real>::downcast(s.updDiscreteVariable(Sub1, dvxModel)) = 29;
// SimTK_TEST(s.getSubsystemStage(Sub1)==Stage::Topology);
// SimTK_TEST(s.getLowestStageModified()==Stage::Model);
//
// // Now realize Model stage again; shouldn't affect lowestStageModified.
// s.advanceSubsystemToStage(Sub0, Stage::Model);
// s.advanceSubsystemToStage(Sub1, Stage::Model);
// s.advanceSystemToStage(Stage::Model);
// SimTK_TEST(s.getSystemStage() == Stage::Model);
//
// SimTK_TEST(s.getLowestStageModified()==Stage::Model); // shouldn't have changed
//}
// Advance State by one stage from stage-1 to stage.
void advanceStage(State& state, Stage stage) {
SimTK_TEST(state.getSystemStage() == stage.prev());
for (SubsystemIndex sx(0); sx <state.getNumSubsystems(); ++sx)
state.advanceSubsystemToStage(sx, stage);
state.advanceSystemToStage(stage);
}
void testCacheValidity() {
const SubsystemIndex Sub0(0), Sub1(1);
State s;
s.setNumSubsystems(2);
SimTK_TEST(s.getSystemStage() == Stage::Empty);
//-------------------------
// "realize" Topology stage
// Allocate at Topology stage a Model stage-invalidating state variable.
const DiscreteVariableIndex dvx1TopoModel =
s.allocateDiscreteVariable(Sub1, Stage::Model, new Value<Real>(2));
SimTK_TEST(s.getDiscreteVarAllocationStage(Sub1,dvx1TopoModel)
== Stage::Topology);
SimTK_TEST(s.getDiscreteVarInvalidatesStage(Sub1,dvx1TopoModel)
== Stage::Model);
SimTK_TEST(Value<Real>::downcast(s.getDiscreteVariable(Sub1,dvx1TopoModel))
== Real(2));
// Allocate at Topology stage a cache entry that depends on Model stage
// and is guaranteed to be valid at Time stage. In between (at Model or
// Instance stage) it *may* be valid if explicitly marked so.
const CacheEntryIndex cx0TopoModel = s.allocateCacheEntry(Sub0,
Stage::Model, Stage::Time, new Value<int>(41));
SimTK_TEST(s.getCacheEntryAllocationStage(Sub0,cx0TopoModel)
== Stage::Topology);
// Here is a cache entry allocated at Topology stage, with depends-on
// Velocity and no good-by guarantee.
const CacheEntryIndex cx0TopoVelocity = s.allocateCacheEntry(Sub0,
Stage::Velocity, Stage::Infinity, new Value<char>('v'));
advanceStage(s, Stage::Topology);
// Topology stage is realized.
//----------------------------
// Shouldn't be able to access cache entry here because this is less than
// its "depends on" stage.
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub0, cx0TopoModel));
//-------------------------
// "realize" Model stage
// Allocate at Model stage, a Position-invalidating state variable.
const DiscreteVariableIndex dvx0ModelPos =
s.allocateDiscreteVariable(Sub0, Stage::Position, new Value<int>(31));
SimTK_TEST(s.getDiscreteVarAllocationStage(Sub0,dvx0ModelPos)
== Stage::Model);
SimTK_TEST(s.getDiscreteVarInvalidatesStage(Sub0,dvx0ModelPos)
== Stage::Position);
SimTK_TEST(Value<int>::downcast(s.getDiscreteVariable(Sub0,dvx0ModelPos))
== 31);
advanceStage(s, Stage::Model);
// Model stage is realized.
//----------------------------
//----------------------------
// "realize" Instance stage
// Allocate a cache entry at Instance stage that has Time as depends-on
// and also has a cross-subsystem dependency on discrete variable
// dvx0ModelPos.
const CacheEntryIndex cx1InstanceTime =
s.allocateCacheEntryWithPrerequisites(Sub1, Stage::Time, Stage::Velocity,
false, false, true, // depends on z
{DiscreteVarKey(Sub0,dvx0ModelPos)},
{CacheEntryKey(Sub0,cx0TopoModel)},
new Value<string>("hasPrereqs_Time"));
// Same but had depends-on Instance.
const CacheEntryIndex cx1InstInst =
s.allocateCacheEntryWithPrerequisites(Sub1, Stage::Instance, Stage::Velocity,
false, false, true, // depends on z
{DiscreteVarKey(Sub0,dvx0ModelPos)},
{CacheEntryKey(Sub0,cx0TopoModel)},
new Value<string>("hasPrereqs_Instance"));
// This attempt to create a cache-to-cache dependency should fail because
// the prerequisite gets invalidated when Velocity stage changes but
// the "dependent" doesn't get invalidated unless Position stage does. Thus
// a velocity could change, invlidating the prereq, but the downstream
// cache entry still looks valid.
SimTK_TEST_MUST_THROW(s.allocateCacheEntryWithPrerequisites(Sub1,
Stage::Position, Stage::Infinity, false, false, false, {},
{CacheEntryKey(Sub0,cx0TopoVelocity)}, new Value<int>(-1)));
advanceStage(s, Stage::Instance);
// Instance stage is realized.
//----------------------------
// Check that the dependency lists are right.
CacheEntryKey ckey1(Sub1,cx1InstanceTime);
CacheEntryKey ckey2(Sub1,cx1InstInst);
SimTK_TEST(s.getZDependents().size() == 2);
SimTK_TEST(s.getZDependents().contains(ckey1));
SimTK_TEST(s.getZDependents().contains(ckey2));
const DiscreteVarInfo& dvinfo =
s.getDiscreteVarInfo(DiscreteVarKey(Sub0,dvx0ModelPos));
SimTK_TEST(dvinfo.getDependents().size() == 2);
SimTK_TEST(dvinfo.getDependents().contains(ckey1));
SimTK_TEST(dvinfo.getDependents().contains(ckey2));
const CacheEntryInfo& ceinfo =
s.getCacheEntryInfo(CacheEntryKey(Sub0,cx0TopoModel));
SimTK_TEST(ceinfo.getDependents().size() == 2);
SimTK_TEST(ceinfo.getDependents().contains(ckey1));
SimTK_TEST(ceinfo.getDependents().contains(ckey2));
// Although cx0TopoModel *could* be valid at this point,
// no one has said so, so we expect it to throw.
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub0, cx0TopoModel));
// If we say it is valid, we should be able to obtain its value.
s.markCacheValueRealized(Sub0, cx0TopoModel);
SimTK_TEST(Value<int>::downcast(s.getCacheEntry(Sub0, cx0TopoModel)) == 41);
//----------------------------
// "realize" Time stage
advanceStage(s, Stage::Time);
// Time stage is realized.
//----------------------------
// cx1InstanceTime isn't automatically valid but can be now.
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstanceTime));
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstInst));
s.markCacheValueRealized(Sub1, cx1InstanceTime);
s.markCacheValueRealized(Sub1, cx1InstInst);
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstanceTime)).get()
== "hasPrereqs_Time");
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstInst)).get()
== "hasPrereqs_Instance");
// That cache entry does not depend on q or u so this should have no effect.
s.updQ() = 0.;
s.updU() = 0.;
SimTK_TEST(s.getSystemStage() == Stage::Time); // unchanged
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstanceTime)).get()
== "hasPrereqs_Time");
// Changing prerequisites should make the cache entry
// inaccessible again, although the stage should not change and the cache
// entry should not get deallocated.
s.updZ() = 0.; // z is prerequisite
SimTK_TEST(s.getSystemStage() == Stage::Time); // unchanged
SimTK_TEST(s.hasCacheEntry(CacheEntryKey(Sub1,cx1InstanceTime)));
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstanceTime));
s.markCacheValueRealized(Sub1, cx1InstanceTime); // valid again
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstanceTime)).get()
== "hasPrereqs_Time");
// Modify design var prerequisite.
Value<int>::updDowncast(s.updDiscreteVariable(Sub0,dvx0ModelPos)).upd()
= 99;
SimTK_TEST(s.hasCacheEntry(CacheEntryKey(Sub1,cx1InstanceTime)));
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstanceTime));
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstInst));
SimTK_TEST(s.getSystemStage() == Stage::Time);
s.markCacheValueRealized(Sub1, cx1InstanceTime); // valid again
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstanceTime)).get()
== "hasPrereqs_Time");
s.markCacheValueRealized(Sub1, cx1InstInst);
SimTK_TEST(Value<string>::downcast(s.getCacheEntry(Sub1,cx1InstInst)).get()
== "hasPrereqs_Instance");
// Test state copying. Should copy through at least Instance stage.
State s2(s); // copy construction
SimTK_TEST(s2.getNumSubsystems() == s.getNumSubsystems());
SimTK_TEST(s2.getSystemStage() >= Stage::Instance);
SimTK_TEST(s2.hasCacheEntry(CacheEntryKey(Sub1,cx1InstanceTime)));
SimTK_TEST(s2.hasCacheEntry(CacheEntryKey(Sub1,cx1InstInst)));
// Dependency lists should have been reconstructed in the copy.
SimTK_TEST(s2.getZDependents().size() == 2);
SimTK_TEST(s2.getZDependents().contains(ckey1));
SimTK_TEST(s2.getZDependents().contains(ckey2));
const DiscreteVarInfo& dvinfo2 =
s2.getDiscreteVarInfo(DiscreteVarKey(Sub0,dvx0ModelPos));
SimTK_TEST(dvinfo2.getDependents().size() == 2);
SimTK_TEST(dvinfo2.getDependents().contains(ckey1));
SimTK_TEST(dvinfo2.getDependents().contains(ckey2));
const CacheEntryInfo& ceinfo2 =
s2.getCacheEntryInfo(CacheEntryKey(Sub0,cx0TopoModel));
SimTK_TEST(ceinfo2.getDependents().size() == 2);
SimTK_TEST(ceinfo2.getDependents().contains(ckey1));
SimTK_TEST(ceinfo2.getDependents().contains(ckey2));
s2.markCacheValueRealized(Sub1, cx1InstInst);
SimTK_TEST(Value<string>::downcast(s2.getCacheEntry(Sub1,cx1InstInst)).get()
== "hasPrereqs_Instance");
// Invalidate cache entry prerequisite (modifying value is not enough).
s.markCacheValueNotRealized(Sub0,cx0TopoModel);
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub1, cx1InstanceTime));
SimTK_TEST(s.getSystemStage() == Stage::Time); // unchanged
// Now modify a Model-stage state variable and realize again. This
// should have invalidated Model stage and hence cx0TopoModel. It should
// also have un-allocated the Instance-stage cache entry.
Value<Real>::updDowncast(s.updDiscreteVariable(Sub1, dvx1TopoModel)) = 9;
SimTK_TEST(s.getSystemStage() == Stage::Topology);
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub0, cx0TopoModel));
// Unallocating the cache entry should have removed it from its
// prerequisite's dependency list.
SimTK_TEST(!s.hasCacheEntry(CacheEntryKey(Sub1,cx1InstanceTime)));
SimTK_TEST(s.getZDependents().empty());
SimTK_TEST(ceinfo.getDependents().empty());
//----------------------------
// "realize" Model stage
advanceStage(s, Stage::Model);
// Model stage is realized.
//----------------------------
SimTK_TEST(!s.isCacheValueRealized(Sub0, cx0TopoModel));
SimTK_TEST_MUST_THROW(s.getCacheEntry(Sub0, cx0TopoModel));
// "calculate" the cache entry and mark it valid.
Value<int>::updDowncast(s.updCacheEntry(Sub0,cx0TopoModel)) =
(int)(2*Value<Real>::downcast(s.getDiscreteVariable(Sub1,dvx1TopoModel)));
s.markCacheValueRealized(Sub0, cx0TopoModel);
SimTK_TEST(Value<int>::downcast(s.getCacheEntry(Sub0, cx0TopoModel)) == 18);
// Now modify the Model-stage variable again, but realize through
// Time stage. We should be able to access the cache entry without
// explicitly marking it valid.
Value<Real>::updDowncast(s.updDiscreteVariable(Sub1, dvx1TopoModel)) = -100;
advanceStage(s, Stage::Model);
advanceStage(s, Stage::Instance);
advanceStage(s, Stage::Time);
SimTK_TEST(Value<int>::downcast(s.getCacheEntry(Sub0, cx0TopoModel)) == 18);
}
void testMisc() {
State s;
s.setNumSubsystems(1);
s.advanceSubsystemToStage(SubsystemIndex(0), Stage::Topology);
// Can't ask for the time before Stage::Topology, but if you could it would be NaN.
s.advanceSystemToStage(Stage::Topology);
// Advancing to Stage::Topology sets t=0.
cout << "AFTER ADVANCE TO TOPOLOGY, t=" << s.getTime() << endl;
SimTK_TEST(s.getTime()==0);
Vector v3(3), v2(2);
QIndex q1 = s.allocateQ(SubsystemIndex(0), v3);
QIndex q2 = s.allocateQ(SubsystemIndex(0), v2);
EventTriggerByStageIndex e1 = s.allocateEventTrigger(SubsystemIndex(0), Stage::Position, 3);
EventTriggerByStageIndex e2 = s.allocateEventTrigger(SubsystemIndex(0), Stage::Instance, 2);
printf("q1,2=%d,%d\n", (int)q1, (int)q2);
printf("e1,2=%d,%d\n", (int)e1, (int)e2);
//cout << s;
DiscreteVariableIndex dv = s.allocateDiscreteVariable(SubsystemIndex(0), Stage::Dynamics, new Value<int>(5));
s.advanceSubsystemToStage(SubsystemIndex(0), Stage::Model);
//long dv2 = s.allocateDiscreteVariable(SubsystemIndex(0), Stage::Position, new Value<int>(5));
Value<int>::updDowncast(s.updDiscreteVariable(SubsystemIndex(0), dv)) = 71;
cout << s.getDiscreteVariable(SubsystemIndex(0), dv) << endl;
s.advanceSystemToStage(Stage::Model);
cout << "AFTER ADVANCE TO MODEL, t=" << s.getTime() << endl;
// Event triggers are available at Instance stage.
s.advanceSubsystemToStage(SubsystemIndex(0), Stage::Instance);
s.advanceSystemToStage(Stage::Instance);
printf("ntriggers=%d, by stage:\n", s.getNEventTriggers());
for (int j=0; j<Stage::NValid; ++j) {
Stage g = Stage(j);
cout << g.getName() << ": " << s.getNEventTriggersByStage(g) << endl;
}
printf("subsys 0 by stage:\n");
for (int j=0; j<Stage::NValid; ++j) {
Stage g = Stage(j);
cout << g.getName() << ": " << s.getNEventTriggersByStage(SubsystemIndex(0),g) << endl;
}
//cout << "State s=" << s;
s.clear();
//cout << "after clear(), State s=" << s;
}
// Helper functions for testConsistent().
// Allocate some part of the state, and alter the stage accordingly.
// For Q, U, Z.
template <typename IDX>
void allocate(State& state, Stage stage,
IDX (State::*allocfun)(SubsystemIndex, const Vector&),
int subsysIdx, int size) {
state.invalidateAll(stage);
(state.*allocfun)(SubsystemIndex(subsysIdx), Vector(size));
advanceStage(state, stage);
}
// For QErr, UErr, ZErr, and EventTriggers.
template <typename IDX, typename ...ARGS>
void allocate(State& state, Stage stage,
IDX (State::*allocfun)(SubsystemIndex, ARGS...) const,
int subsysIdx, ARGS... args) {
state.invalidateAll(stage);
(state.*allocfun)(SubsystemIndex(subsysIdx), args...);
advanceStage(state, stage);
}
// Advance to Instance stage and test that the two states are NOT consistent.
void isNotConsistent(State& sA, State& sB) {
while (sA.getSystemStage() < Stage::Instance)
advanceStage(sA, sA.getSystemStage().next());
while (sB.getSystemStage() < Stage::Instance)
advanceStage(sB, sB.getSystemStage().next());
SimTK_TEST(!sA.isConsistent(sB)); SimTK_TEST(!sB.isConsistent(sA));
}
// Advance to Instance stage and test that the two states are consistent.
void isConsistent(State& sA, State& sB) {
while (sA.getSystemStage() < Stage::Instance)
advanceStage(sA, sA.getSystemStage().next());
while (sB.getSystemStage() < Stage::Instance)
advanceStage(sB, sB.getSystemStage().next());
SimTK_TEST(sA.isConsistent(sB)); SimTK_TEST(sB.isConsistent(sA));
}
void testConsistent() {
State sA;
State sB;
int numSubsys = 3;
sA.setNumSubsystems(numSubsys);
sB.setNumSubsystems(numSubsys);
// Must realize to Instance to check consistency.
SimTK_TEST_MUST_THROW_EXC_DEBUG(sA.isConsistent(sB), Exception::StageTooLow);
isConsistent(sA, sB);
for (int i = 0; i < numSubsys; ++i) {
// Also using `i` as a way to arbitrarily choose different Vector sizes.
// Q
allocate(sA, Stage::Model, &State::allocateQ, i, 5 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateQ, i, 5 + i);
isConsistent(sA, sB);
// U
allocate(sA, Stage::Model, &State::allocateU, i, 3 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateU, i, 3 + i);
isConsistent(sA, sB);
// Z
allocate(sA, Stage::Model, &State::allocateZ, i, 8 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateZ, i, 8 + i);
isConsistent(sA, sB);
// QErr
allocate(sA, Stage::Model, &State::allocateQErr, i, 2 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateQErr, i, 2 + i);
isConsistent(sA, sB);
// UErr
allocate(sA, Stage::Model, &State::allocateUErr, i, 7 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateUErr, i, 7 + i);
isConsistent(sA, sB);
// UDotErr
allocate(sA, Stage::Model, &State::allocateUDotErr, i, 1 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateUDotErr, i, 1 + i);
isConsistent(sA, sB);
// EventTrigger
for(SimTK::Stage stage = SimTK::Stage::LowestValid;
stage <= SimTK::Stage::HighestRuntime; ++stage) {
allocate(sA, Stage::Model, &State::allocateEventTrigger,
i, stage, 12 + i);
isNotConsistent(sA, sB);
allocate(sB, Stage::Model, &State::allocateEventTrigger,
i, stage, 12 + i);
isConsistent(sA, sB);
}
}
// Change the number of subsystems.
numSubsys = 4;
sA.setNumSubsystems(numSubsys);
isNotConsistent(sA, sB);
sB.setNumSubsystems(numSubsys);
isConsistent(sA, sB);
}
int main() {
int major,minor,build;
char out[100];
const char* keylist[] = { "version", "library", "type", "debug", "authors", "copyright", "svn_revision", 0 };
SimTK_version_SimTKcommon(&major,&minor,&build);
std::printf("==> SimTKcommon library version: %d.%d.%d\n", major, minor, build);
std::printf(" SimTK_about_SimTKcommon():\n");
for (const char** p = keylist; *p; ++p) {
SimTK_about_SimTKcommon(*p, 100, out);
std::printf(" about(%s)='%s'\n", *p, out);
}
SimTK_START_TEST("StateTest");
//SimTK_SUBTEST(testLowestModified);
SimTK_SUBTEST(testCacheValidity);
SimTK_SUBTEST(testMisc);
SimTK_SUBTEST(testConsistent);
SimTK_END_TEST();
}
|