Alex Lin
bbba26e057
Merge branch '17.0'
2016-09-16 09:50:12 -05:00
Alex Lin
00a0e8be44
ICG exclude of class member variables now defines incorrect memory offsets in io_src #311
...
Missed some bitfield offset calculations.
2016-09-16 09:46:03 -05:00
Derek Bankieris
ba59606b1d
Added TRICK_PYTHON_PATH environment variable #313
2016-09-16 09:20:11 -05:00
Alex Lin
c134ffea8f
Merge branch '17.0'
2016-09-16 08:43:47 -05:00
Alex Lin
ae07b26243
ICG exclude of class member variables now defines incorrect memory offsets in io_src #311
...
Added back the code that set the offset of variables with the offsetof function. This
code is running by default. Any code that includes #ifndef TRICK_ICG in
classes/structures will want this on.
Added a flag to ICG that allows us to turn off writing of these lines. If the flag
is present, ICG may write out io_src code for private/protected variables that it could
not reach if an offsetof function was required. Code cannot have any #ifndef TRICK_ICG
present in classes/structures for this to work.
2016-09-16 08:39:37 -05:00
Alex Lin
b88ff45f94
Bad units specification [dB] #312
...
Added a conversion of [dB] to [1] for use in udunits.
2016-09-15 15:24:19 -05:00
Alex Lin
b2432fd269
Trickified Project Libraries #309
...
We were ignoring classes completely if it was found in to be in an external library
directory. We need to partially process it so it is included in the ICG generated
class_map file which registers attributes of classes and eventually works it's way
to populating the S_sie file.
2016-09-15 14:48:23 -05:00
John M. Penn
fc77fbc216
Fix tv file which was horked somehow
2016-09-14 17:17:44 -05:00
John M. Penn
f186b91afc
Add comments that explain the coordinate systems and transformations in SunDisplay. Ref #310
2016-09-14 17:16:42 -05:00
Derek Bankieris
2aa0287fb9
Generic makefile for building a Trickified project library #309
2016-09-14 11:26:29 -05:00
Alex Lin
9801e3d210
ICG not setting default checkpointing io correctly. #308
...
If a checkpoint_io field is found we were or'ing this in to bits already
set by default. Clear the bits first.
2016-09-14 09:38:28 -05:00
Alex Lin
256c83a876
ICG not setting default checkpointing io correctly. #308
...
Changed the default io value from 3 which left out checkpointing to 15 which does
include checkpointing.
2016-09-13 16:37:59 -05:00
Alex Lin
54553b5fa9
Merge pull request #306 from iamthad/master
...
Fix filename output in attach_units for Python 3
2016-09-12 07:53:49 -05:00
Thadeus Fleming
5027c02c51
Fix filename output in attach_units for Python 3
2016-09-11 14:21:37 -05:00
Alex Lin
9e5383bac0
Merge pull request #305 from ddj116/set_num_runs_fix
...
Fixed indexing problem when reducing number of monte carlo runs
2016-09-09 14:11:21 -05:00
Dan D. Jordan
70a4ad9e24
Fixed indexing problem when reducing number of monte carlo runs
...
When runs reduced via successive calls to set_num_runs, instead of using
pop_front() and front(), use pop_back() and back()
Refs #304
2016-09-08 13:53:44 -05:00
Derek Bankieris
261af7930e
Removed prerequisites from .NOTPARALLEL #303
2016-09-07 10:27:51 -05:00
Alex Lin
5903209e00
Create a trick-config script #298
...
Need to add trick-config to list of executables to remove during uninstall.
2016-09-07 09:40:31 -05:00
Alex Lin
2918662767
Create a trick-config script #298
...
Created trick-config that can print the version, installation prefix,
and compile and link flags that Trick defines.
2016-09-07 09:33:03 -05:00
Alex Lin
0eab3d2d4e
DP file in SIM_ball_L1 does not work #302
...
So the previous commit works with one plot widget but not the other. Now it
works for both.
2016-09-07 09:31:52 -05:00
Alex Lin
53f0e33049
DP file in SIM_ball_L1 does not work #302
...
Everything was old and now wrong in this file. Wrong start/stop times,
wrong X and Y axis min/max values, wrong units for time, and wrong
variable names.
2016-09-07 07:20:24 -05:00
Alex Lin
3be6715eba
Merge tag '17.0.3'
...
Adding check for NULL char pointer before converting to string.
2016-09-06 13:58:54 -05:00
Alex Lin
c4a32600cc
Trick View: Can't set variables with -- units #301
...
Test before trying to convert NULL char * to string.
2016-09-06 13:53:37 -05:00
Alex Lin
eaa6f796d9
Merge tag '17.0.3'
...
Converting units incoming from the variable server.
2016-09-06 13:22:09 -05:00
Alex Lin
b32015a1ad
Trick View: Can't set variables with -- units #301
...
Called map_trick_units_to_udunits to convert incoming units to udunits.
2016-09-06 13:15:36 -05:00
John Penn
753d821329
Fix compilers warnings. Ref #300
2016-09-02 17:01:07 -05:00
Alex Lin
919a8e2068
Variable using an enumeration as array index causes infinite loop #299
...
Once we determine the type of a variable we should stop processing the
AST tree at that point. We do this for record types but not for the
built in types. Changed the return value of the process builtin
function to false so we stop processing.
2016-09-01 16:06:33 -05:00
Alex Lin
066554b2f7
Merge pull request #297 from ddj116/get_variable
...
MonteCarlo add_variable duplicate protection and get_variable functionality
2016-08-30 11:00:16 -05:00
Alex Lin
fa4664c4ea
Move the loop that waits for scheduled threads to finish out of advance_sim_time #292
...
2 problems found. Syncing scheduled threads was not happening at all because the job
was not being rescheduled. Did not want to deal with changing job call times so I
called the new scheuduled_thread_sync routine from advance_sim_time. That's where
it started, it'll be fine.
Also found that I was resetting job complete flags too aggressively. The check to
test if the thread is ready to run was missing. Added that check back in.
2016-08-30 10:56:18 -05:00
Dan D. Jordan
fdd442ba68
Added duplicate name protection on add_variable and get_variable
...
mechanism for getting MonteVar * derived types so that those dispersion
settings can be changed once they go out of scope.
2016-08-30 09:48:10 -05:00
Alex Lin
7d82690a0b
tc_init is not thread-safe #289
...
Made the global sockaddr variables local and cleared them with a memset.
2016-08-29 13:11:04 -05:00
Alex Lin
e3759ac594
Move the loop that waits for scheduled threads to finish out of advance_sim_time #292
...
When we moved the thread sync code, a loop to clear all job complete flags was left out
causing unit test errors.
2016-08-29 08:42:53 -05:00
Alex Lin
d388b26e30
Does SIM_test_sched need a software frame? #296
2016-08-26 14:50:34 -05:00
Alex Lin
aeeaa7b3bc
Move the loop that waits for scheduled threads to finish out of advance_sim_time #292
...
Forgot to introduce the new function.
2016-08-26 09:10:44 -05:00
Alex Lin
f5578c2e79
Inconsistency between including headers and SimObjects #294
...
Added ${TRICK_HOME}/share to the SYSTEM_SFLAGS so you can use a
consistent "trick/sim_objects/default_trick_sys.sm" path if you
want.
2016-08-26 09:08:41 -05:00
Alex Lin
7c57c1d02d
Move the loop that waits for scheduled threads to finish out of advance_sim_time #292
...
Created a new executive job that waits for the scheduled threads to finish. We
run this right before advancing time.
2016-08-26 09:07:46 -05:00
Alex Lin
858602fe01
New STL framework doesn't support const #293
...
So using consts as arguments to STLs causes errors in our io code and SWIG.
Added a check for const template arguments and going to ignore them for
both ICG and what we input to SWIG.
2016-08-25 08:42:43 -05:00
Alex Lin
0072e7d6f0
Unintended performance issue with integ_loop at end of scheduled job classes #243
...
Created a new executive job that waits for threads to finish and readies them
for their next frame of execution. Created a new job class system_thread_sync
after the top of frame jobs and before the input processor is run to sync the
threads. Along the way cleaned up instrumentation jobs on the threads to fix #290 .
2016-08-24 10:55:27 -05:00
Alex Lin
f9f1847385
Changing trick_ver.txt to 17.1.dev
2016-08-23 17:02:29 -05:00
Alex Lin
efe197ca6d
Merge tag '17.0.2'
...
Removes hard coded prefix
2016-08-23 16:54:58 -05:00
Alex Lin
a946e16bdd
configure script doesn't check for clang headers #287
...
Added a configure check for -lz
2016-08-23 09:46:50 -05:00
Alex Lin
90552a5053
Move clean rules to makefile in sim directory. #284
...
Added the clean rules back to Makefile.sim with a addition of
defining a conditional variable. If this variable is set than
the set of rules in the local makefile will not be defined. This
should allow the sim to be cleaned whether TRICK_HOME exists or not.
2016-08-23 09:00:03 -05:00
Alex Lin
d0349772d5
configure script doesn't check for clang headers #287
...
Added a configure check for clang/Basic/LLVM.h.
Also removed -lz from the link libraries. I don't think we need it.
2016-08-23 08:58:16 -05:00
Alex Lin
cddc8a585d
SIM_satellite graphics might be missing -ldl #288
...
Added -ldl to link flags.
2016-08-19 10:06:38 -05:00
Alex Lin
82049ead95
Add a printout when ICG parses header file with no Trick header comment #281
...
Added the printout.
2016-08-19 10:04:42 -05:00
Alex Lin
c32b239472
Get rid of the real time clock sim objects #286
...
Removed the objects.
2016-08-19 09:59:07 -05:00
Alex Lin
60473dde03
Move clean rules to makefile in sim directory. #284
...
Moved the clean rules to the makefile in the sim directory. They will
always work whether the rest of Trick is set up or not.
2016-08-19 09:57:13 -05:00
Alex Lin
dfde52864f
the install command on the Mac does not take the -D argument #283
...
So I get punished by leaving in a debug statement to hardcode PREFIX for testing. Grrr.
2016-08-18 09:54:35 -05:00
Alex Lin
302f1fe1af
the install command on the Mac does not take the -D argument #283
...
So I get punished by leaving in a debug statement to hardcode PREFIX for testing. Grrr.
2016-08-17 17:14:01 -05:00
Alex Lin
e72036f3be
the install command on the Mac does not take the -D argument #283
...
Instead of having the install command try and create the destination
directory we use a second command to mkdir the directory first.
2016-08-17 17:05:58 -05:00