branch: master 「№60968」
Commited by: Brahm Yachnin
GitHub commit link: 「2df5261739aafedd」
Difference from previous tested commit:  code diff
Commit date: 2019-10-06 18:27:33

RosettaAI: Setting rosetta_scripts_scripts submodule to latest origin/master version.

...


branch: master 「№60967」
Commited by: Vikram K. Mulligan
GitHub commit link: 「c4c324751f5a3ce5」 「№4275」
Difference from previous tested commit:  code diff
Commit date: 2019-10-06 15:42:24

Merge pull request #4275 from RosettaCommons/vmullig/fix_macos_compilation Comment out unused variable in RollMover. This was preventing compilation on my Mac with Clang 11.0.0. (Note that Clang 9 is used on the test server for the MacOS compilation test.)

...


branch: master 「№60966」
Commited by: Vikram K. Mulligan
GitHub commit link: 「df27ceab8379f268」 「№4273」
Difference from previous tested commit:  code diff
Commit date: 2019-10-05 15:44:57

Merge pull request #4273 from RosettaCommons/vmullig/fix_clang_analysis_test Commenting out an unread variable flagged by clang analysis.

...


branch: master 「№60965」
Commited by: Jason C. Klima
GitHub commit link: 「952a6f58c6b13d3d」 「№4263」
Difference from previous tested commit:  code diff
Commit date: 2019-10-04 17:42:32

Merge pull request #4263 from RosettaCommons/klimaj/viewer_bug_fixes Minor bug fixes in pyrosetta.distributed.viewer

...


branch: master 「№60964」
Commited by: Vikram K. Mulligan
GitHub commit link: 「d1662a3fa1f57397」 「№4265」
Difference from previous tested commit:  code diff
Commit date: 2019-10-04 16:10:14

Merge pull request #4265 from RosettaCommons/vmullig/clean_up_parameters_hh Clean up Parameters.hh and Parameter.hh a bit to reduce transclusions. This is part of Andrew Leaver-Fay's attempt to improve compilation efficiency by reducing unnecessary inclusions. Some of my parametric code puts too much in header files, necessitating inclusion of headers like Residue.hh (which themselves include a lot of other stuff). I can clean this up.

...


branch: master 「№60963」
Commited by: Brian Coventry
GitHub commit link: 「513cc22d17d203e9」 「№4132」
Difference from previous tested commit:  code diff
Commit date: 2019-10-04 14:07:07

Merge pull request #4132 from RosettaCommons/bcov/super_bugfix Super bugfix and arbitrary mover change pr

...


branch: master 「№60962」
Commited by: Frank DiMaio
GitHub commit link: 「65358bc47b75f39e」 「№4261」
Difference from previous tested commit:  code diff
Commit date: 2019-10-03 14:24:05

Merge pull request #4261 from RosettaCommons/dimaio/glycan_cart_bonded_fixes Dimaio/glycan cart bonded fixes

...


branch: master 「№60961」
Commited by: Ajasja Ljubetič
GitHub commit link: 「6516f65b18293598」 「№4239」
Difference from previous tested commit:  code diff
Commit date: 2019-10-03 12:24:19

Merge pull request #4239 from RosettaCommons/ajasja/ddg_ala_scan Ajasja/ddg ala scan

...


branch: master 「№60960」
Commited by: Rocco Moretti
GitHub commit link: 「2fbc75295dca3981」 「№4256」
Difference from previous tested commit:  code diff
Commit date: 2019-10-02 10:32:15

Merge pull request #4256 from RosettaCommons/roccomoretti/Wsuggest_override Override Overdrive C++11 added the override keyword for virtual functions which are a re-implementation of a base class's virtual function. This is helpful, because the compiler can check to make sure that the function is actually overriding the base class's function, rather than defining a new function with a different interface. In fact, modern C++ recommended practice is to use virtual only for the original (base class) version of a virtual function, and any reimplementation of the function should be marked with override. This PR runs the clang-tidy modernize-use-override tool over the codebase to add override and convert virtual to override where warranted. After this, `virtual` should really only be on functions which are the initial declaration of a virtual function, and `override` should be on all declarations of virtual functions which are in a subsequent child class.

...


branch: master 「№60959」
Commited by: Jeliazko Jeliazkov
GitHub commit link: 「6ba36f5aa481c0b8」 「№4258」
Difference from previous tested commit:  code diff
Commit date: 2019-10-02 08:48:33

Merge pull request #4258 from RosettaCommons/lqtza/bump_4hpy_cutoff Update 4HPY (antibody h3) Conway discrimination cutoff for sci. bench.

...


branch: master 「№60958」
Commited by: Vikram K. Mulligan
GitHub commit link: 「04b1de3fcea62b2b」 「№4259」
Difference from previous tested commit:  code diff
Commit date: 2019-10-01 23:48:44

Merge pull request #4259 from RosettaCommons/vmullig/fix_antibody_design_mover Removing an unused, uninitialized variable from AntibodyDesignMover which is causng stochastic failures of integration test. Note that, at some point, it would be good to switch to header-initialization and a default copy constructor for this mover.

...


branch: master 「№60957」
Commited by: Sergey Lyskov
GitHub commit link: 「453c0349c3bbd52c」 「№4150」
Difference from previous tested commit:  code diff
Commit date: 2019-10-01 23:33:10

Merge pull request #4150 from RosettaCommons/sergey/binder Updating PyRosetta.notebooks submodule. Updating `notebook` test, adding test time limit.

...


branch: master 「№60956」
Commited by: Jack Maguire
GitHub commit link: 「e60f20795c0db6d5」 「№4237」
Difference from previous tested commit:  code diff
Commit date: 2019-10-01 08:47:08

Merge pull request #4237 from RosettaCommons/JackMaguire/StrongTypeAliases Adding Utility To Make C++'s Type System Help Us Catch Bugs We're having an issue in JD3 right now where we have a lot of Sizes and Reals floating around and we are forced to use variable/parameter names to make sure they line up correctly when calling functions. This is very bug prone because the compiler will not tell you if you pass the wrong arguments if all of them are the same type (`core::Size`, for example). This PR adds a theoretically zero-overhead way to assign different type names to different Sizes. See below for an example. I'm also adding a few use cases to the MC HBNet data structure to make sure this works and to make sure the HBNet profile test does not get worse. ```c++ //OLD: void draw_rectangle( int width, int height ); void foo( int h, int w ){ draw_rectangle( h, w ); //logic error, may not be caught at runtime draw_rectangle( w, h ); //correct } //NEW: using Width = utility::StrongSize< struct Width_ >; using Height = utility::StrongSize< struct Height_ >; void draw_rectangle( Width width, Height height ); void foo( Size h, Size w ){ draw_rectangle( h, w ); //compiler error draw_rectangle( w, h ); //compiler error draw_rectangle( Width( h ), Height( w ) ); //logic error, but the developer should be able to notice that this is wrong draw_rectangle( Width( w ), Height( h ) ); //correct } ``` Here's proof that this abstraction gets compiled away: https://godbolt.org/z/eWM_uJ

...


branch: master 「№60955」
Commited by: Rocco Moretti
GitHub commit link: 「839e65fe1f9fe9fd」 「№4252」
Difference from previous tested commit:  code diff
Commit date: 2019-09-30 12:08:55

Merge pull request #4252 from RosettaCommons/roccomoretti/fix_d_aa_loading_issues Make DAAs and CCD components play more nicely together. There were issues with loading in D-SER while the PDB components files were active. This PR adds a unit test for D-SER loading, as well as a few changes to address warnings/errors which occur during the process. We also adjust the exclude_pdb_components.txt list for the three letter code translation functionality which is currently in -alternate_3_letter_codes default.

...


branch: master 「№60954」
Commited by: Yang Hsia
GitHub commit link: 「192b028ae487fbd6」 「№4211」
Difference from previous tested commit:  code diff
Commit date: 2019-09-28 14:14:50

Merge pull request #4211 from RosettaCommons/yhsia/ddg_debug ddG_filter residues not truncated in symmetry mode

...


branch: master 「№60953」
Commited by: Vikram K. Mulligan
GitHub commit link: 「ae7199db0dcd95ef」
Difference from previous tested commit:  code diff
Commit date: 2019-09-28 02:54:18

beautifying

...


< 1 .. 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 .. 354 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled