Skip to content

Commit

Permalink
update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
esaule committed Oct 6, 2024
1 parent 4bbc343 commit ec22111
Show file tree
Hide file tree
Showing 9 changed files with 321 additions and 279 deletions.
2 changes: 1 addition & 1 deletion testing-logs/cxx_logs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>
<body>
<h1>Testing logs for C++</h1>
<p>Running at Sat Oct 5 09:06:44 PM EDT 2024</p>
<p>Running at Sun Oct 6 01:06:40 AM EDT 2024</p>
<div id="summary0" class="failure">
<h2><a href="cxx_logs.html#cxxlog0">Assignment 0</a> </h2>
<p>
Expand Down
64 changes: 52 additions & 12 deletions testing-logs/cxx_testing_logs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>
<body>
<h1>Testing logs for C++</h1>
<p>Running at Sat Oct 5 08:53:26 PM EDT 2024</p>
<p>Running at Sun Oct 6 12:53:26 AM EDT 2024</p>
<div id="summary3d_game_test.cpp" class="failure">
<h2><a href="cxx_testing_logs.html#cxxlog3d_game_test.cpp">Test 3d_game_test.cpp</a> </h2>
<p>
Expand Down Expand Up @@ -6011,15 +6011,56 @@ <h3 id="cxxlogus_map_test.cpp-buildtest">Build Test for test us_map_test.cpp</h3
/home/bridges-testing/bridges-cxx-install/include/Bridges.h:415:53: error: request for member ‘getMapDataJSON’ in ‘ds’, which is of non-class type ‘int’
415 | string map_str = ds.getMapDataJSON(state_data);
| ^~~~~~~~~~~~~~
us_map_test.cpp: In function ‘int main(int, char**)’:
us_map_test.cpp:37:34: error: cannot convert ‘bridges::DataSource’ to ‘int&amp;’
37 | bridges.setMap(map_data, ds);
| ^~
| |
| bridges::DataSource
/home/bridges-testing/bridges-cxx-install/include/Bridges.h:412:84: note: initializing argument 2 of ‘void bridges::Bridges::setMap(std::vector&lt;bridges::dataset::State&gt;, int&amp;)’
412 | void setMap(vector&lt;dataset::State&gt; state_data, Datasource&amp; ds) {
| ~~~~~~~~~~~~^~
In file included from us_map_test.cpp:9:
/home/bridges-testing/bridges-cxx-install/include/USMaps.h: In member function ‘virtual const std::string bridges::datastructure::USMaps::getDataStructureRepresentation() const’:
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:42:94: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
42 | map_str += &quot;_state_name&quot; + JSONencode(st.getStateName()) +
| ~~~~~~~~~~~~~~~^~
In file included from /home/bridges-testing/bridges-cxx-install/include/DataSource.h:27:
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:37:40: note: in call to ‘std::string bridges::dataset::State::getStateName()’
37 | string getStateName() {
| ^~~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:43:95: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
43 | &quot;_stroke_color&quot; + JSONencode(st.getStrokeColor()) +
| ~~~~~~~~~~~~~~~~~^~
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:40:40: note: in call to ‘std::string bridges::dataset::State::getStrokeColor()’
40 | string getStrokeColor() {
| ^~~~~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:44:95: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
44 | &quot;_stroke_width&quot; + JSONencode(st.getStrokeWidth()) +
| ~~~~~~~~~~~~~~~~~^~
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:46:39: note: in call to ‘float bridges::dataset::State::getStrokeWidth()’
46 | float getStrokeWidth() {
| ^~~~~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:45:91: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
45 | &quot;_fill_color&quot; + JSONencode(st.getFillColor()) +
| ~~~~~~~~~~~~~~~^~
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:43:40: note: in call to ‘std::string bridges::dataset::State::getFillColor()’
43 | string getFillColor() {
| ^~~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:46:101: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
46 | &quot;_view_counties&quot; + JSONencode(st.getViewCountiesFlag()) +
| ~~~~~~~~~~~~~~~~~~~~~~^~
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:49:38: note: in call to ‘bool bridges::dataset::State::getViewCountiesFlag()’
49 | bool getViewCountiesFlag() {
| ^~~~~~~~~~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:49:78: error: passing ‘const bridges::dataset::State’ as ‘this’ argument discards qualifiers [-fpermissive]
49 | for (auto&amp; c : st.getCounties()) {
| ~~~~~~~~~~~~~~^~
/home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:30:60: note: in call to ‘std::unordered_map&lt;int, bridges::dataset::County&gt; bridges::dataset::State::getCounties()’
30 | unordered_map&lt;int, County&gt; getCounties() {
| ^~~~~~~~~~~
/home/bridges-testing/bridges-cxx-install/include/USMaps.h: In member function ‘std::vector&lt;bridges::dataset::State&gt; bridges::datastructure::USMaps::setMap(std::vector&lt;bridges::dataset::State&gt;)’:
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:80:25: warning: no return statement in function returning non-void [-Wreturn-type]
80 | }
| ^
us_map_test.cpp: At global scope:
us_map_test.cpp:56:2: error: expected ‘}’ at end of input
56 | }
| ^
/home/bridges-testing/bridges-cxx-install/include/USMaps.h:26:19: note: to match this ‘{’
26 | namespace bridges {
| ^
In file included from /usr/include/c++/13/bits/hashtable_policy.h:34,
from /usr/include/c++/13/bits/hashtable.h:35,
from /usr/include/c++/13/bits/unordered_map.h:33,
Expand All @@ -6037,8 +6078,7 @@ <h3 id="cxxlogus_map_test.cpp-buildtest">Build Test for test us_map_test.cpp</h3
/usr/include/c++/13/tuple:2268:9: error: no matching function for call to ‘bridges::dataset::County::County()’
2268 | second(std::forward&lt;_Args2&gt;(std::get&lt;_Indexes2&gt;(__tuple2))...)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:4,
from /home/bridges-testing/bridges-cxx-install/include/DataSource.h:27:
In file included from /home/bridges-testing/bridges-cxx-install/include/./data_src/State.h:4:
/home/bridges-testing/bridges-cxx-install/include/./data_src/County.h:25:33: note: candidate: ‘bridges::dataset::County::County(int, int, std::string, std::string)’
25 | County (int id, int code, string county, string state) {
| ^~~~~~
Expand Down
6 changes: 3 additions & 3 deletions testing-logs/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<p>Last run at Sat Oct 5 09:48:54 PM EDT 2024</p>
<p>bridges-cxx: 3.4.4-29-g8eb4825 </p>
<p>Last run at Sun Oct 6 01:50:14 AM EDT 2024</p>
<p>bridges-cxx: 3.4.4-30-g80eecf9 </p>
<p>bridges-python: 3.4.4-26-g1c7f7ad </p>
<p>bridges-java: 3.4.3-8-g731f2b7 </p>
<p>bridges-bot-scripts: dfc5a4d </p>
<p>bridges-client-testing: c72181a </p>
<p>bridges-client-testing: 8dbac56 </p>
<p>bridges-assignments: f8f5907e </p>
<p>
<a href="cxx_logs.html">cxx_logs.html</a><br>
Expand Down
38 changes: 19 additions & 19 deletions testing-logs/java_logs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>
<body>
<h1>Testing logs for Java</h1>
<p>Running at Sat Oct 5 09:11:25 PM EDT 2024</p>
<p>Running at Sun Oct 6 01:11:18 AM EDT 2024</p>
<div id="summary0" class="success">
<h2><a href="java_logs.html#javalog0">Assignment 0</a> </h2>
<p>
Expand Down Expand Up @@ -1982,7 +1982,7 @@ <h3 id="javalog30-buildanswer">Build Answer for Assignment 30</h3>
<h3 id="javalog30-runanswer">Run Answer for Assignment 30</h3>
<pre><code>Guessing WikiDataActor.java is the right java file where main is

Data Access Took: 1.726449746900722E12
Data Access Took: 1.72646415274335E12
Alarm clock
could not run java_answer for assignment in ../assignmentdb/30-TemporalBaconNumber/java_answer
</code></pre>
Expand Down Expand Up @@ -2462,23 +2462,23 @@ <h3 id="javalog43-runanswer">Run Answer for Assignment 43</h3>
Set size: 12648
Grid
===grid stats===
0)Source Point:-0.8376886124801359,-10.162212127782318
0)[ALG]Closest Point: -73.917196,40.616092
0)[ALG]Min Dist:88.98904747268692
0)[BFA]Closest Point: -73.917196,40.616092
0)[BFA]Min Dist:88.98904747268692
0)Source Point:-36.149952596317675,-21.289414042738436
0)[ALG]Closest Point: -73.9222475,40.6128304
0)[ALG]Min Dist:72.51644040725722
0)[BFA]Closest Point: -73.9222475,40.6128304
0)[BFA]Min Dist:72.51644040725722
0)Difference:0.0
Source Point:-10.6050045263638,40.67427936436514
Source Point:-5.081333503918856,40.77823749923303
Source Point:-40.38501743683811,40.62126173928252
Source Point:-61.68133539848279,40.77789234766808
Source Point:-3.330533072021595,40.61411809369164
Source Point:-21.69865710986592,40.706401053813025
Source Point:-26.123546302138415,40.76081307919682
Source Point:-42.98641778646782,40.738487121793014
Source Point:-58.2532328718373,40.78422347402335
Source Point:-23.839048165146522,40.71669085345914
num cells examined:11
Source Point:-63.47083105281567,40.63742741763681
Source Point:-15.446170532229196,40.63220132072096
Source Point:-15.214301327082424,40.705001769686525
Source Point:-52.421741065318656,40.798832492581155
Source Point:-63.91682849080423,40.70536406266489
Source Point:-30.81940708760333,40.69643466624203
Source Point:-31.804462321676418,40.72651906987069
Source Point:-54.62070493466154,40.652390685990376
Source Point:-16.785515413805356,40.614291207539175
Source Point:-71.30980731358078,40.708815323257696
num cells examined:5

Check Your Visualization at the following link:

Expand Down Expand Up @@ -3250,7 +3250,7 @@ <h3 id="javalog71-buildanswer">Build Answer for Assignment 71</h3>
<h3 id="javalog71-runanswer">Run Answer for Assignment 71</h3>
<pre><code>Guessing Pi_Estimation.java is the right java file where main is

Pi val: 3.13372
Pi val: 3.14684

Check Your Visualization at the following link:

Expand Down
36 changes: 18 additions & 18 deletions testing-logs/java_testing_logs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</head>
<body>
<h1>Testing logs for Java</h1>
<p>Running at Sat Oct 5 08:56:24 PM EDT 2024</p>
<p>Running at Sun Oct 6 12:56:29 AM EDT 2024</p>
<div id="summaryarray1d.java" class="success">
<h2><a href="java_testing_logs.html#javalogarray1d.java">Test array1d.java</a> </h2>
<p>
Expand Down Expand Up @@ -1181,10 +1181,10 @@ <h3 id="javalogeq_snippet.java-buildtest">Build Test for test eq_snippet.java</h
<div class="success">
<h3 id="javalogeq_snippet.java-runtest">Run Test for test eq_snippet.java</h3>
<pre><code>Earthquake 0:
Magnitude:2.1
Date:Oct 06 2024 00:36:59.820 UTC
Location: 44 km W of Anchor Point, Alaska
Lat/Long:59.7601,-152.6312
Magnitude:3.42
Date:Oct 06 2024 04:13:24.410 UTC
Location: 69 km NE of Cruz Bay, U.S. Virgin Islands
Lat/Long:18.799,-64.3478333333333
</code></pre>
</div>

Expand Down Expand Up @@ -1241,10 +1241,10 @@ <h3 id="javaloggame_snippet.java-buildtest">Build Test for test game_snippet.jav
</div>
<div class="success">
<h3 id="javaloggame_snippet.java-runtest">Run Test for test game_snippet.java</h3>
<pre><code>NFL Blitz: Pro
GameCube
8.0
[Sports, Action]
<pre><code>Lock On: Modern Air Combat
PC
7.8
[Flight, Simulation]
</code></pre>
</div>

Expand Down Expand Up @@ -1517,8 +1517,8 @@ <h3 id="javalogimdb_snippet.java-buildtest">Build Test for test imdb_snippet.jav
</div>
<div class="success">
<h3 id="javalogimdb_snippet.java-runtest">Run Test for test imdb_snippet.java</h3>
<pre><code>Christian_Slater
Rosa_dei_nomi,_La_(1987)
<pre><code>James_Stewart_(I)
Man_Who_Knew_Too_Much,_The_(1956)
</code></pre>
</div>

Expand Down Expand Up @@ -2231,11 +2231,11 @@ <h3 id="javalogshakespeare_snippet.java-buildtest">Build Test for test shakespea
</div>
<div class="success">
<h3 id="javalogshakespeare_snippet.java-runtest">Run Test for test shakespeare_snippet.java</h3>
<pre><code>Sonnet 64
<pre><code>Sonnet 22
poem
When I have seen by Time's fell hand defaced
The rich-proud cost of outworn buried age,
When somet...
My glass shall not persuade me I am old,
So long as youth and thou are of one date,
But when in th...
</code></pre>
</div>

Expand Down Expand Up @@ -3144,15 +3144,15 @@ <h3 id="javalogwikidata_actor_snippet.java-runtest">Run Test for test wikidata_a

Actor-Movie Data:
Movie: Q331017 &quot;To Catch a Thief&quot;
Actor: Q2064625 &quot;Roland Lesaffre&quot;
Actor: Q513849 &quot;Bess Flowers&quot;

Actor-Movie Data:
Movie: Q331017 &quot;To Catch a Thief&quot;
Actor: Q2373976 &quot;Dominique Davray&quot;
Actor: Q541270 &quot;Jessie Royce Landis&quot;

Actor-Movie Data:
Movie: Q331017 &quot;To Catch a Thief&quot;
Actor: Q2464819 &quot;Philip Van Zandt&quot;
Actor: Q921945 &quot;John Williams&quot;

</code></pre>
</div>
Expand Down
Loading

0 comments on commit ec22111

Please sign in to comment.