Giter Site home page Giter Site logo

msqc's People

Contributors

acappiello avatar djyaron avatar matteust avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

msqc's Issues

Consolidated user-specific options

It shouldn't be necessary for each user to change things like dataset locations or scratch directories repeatedly.

Idea: global config struct/class.

Add documentation

Documentation is extremely inconsistent throughout the project. I propose we use README files for big picture, high level documentation and the matlab files for more detailed documentation.

For matlab functions, I propose a format like:

function bar = fun(foo)
% Description:
%   A brief overview of what the function does.
%
% Input:
%   foo:    Some data.
%
% Output:
%   bar:   Some result.
%
% Example (optional):
%   x = blah;
%   var = fun(x);

Overly restrictive Environment.compare

This code will not detect identical permutations.

For example:

%% Bug demonstration.
x = Environment;
x.ncharge = 2;
x.rho = [10 15];
x.r = [1 2; 3 4; 5 6];

y = Environment;
y.ncharge = 2;
y.rho = [15 10];
y.r = [2 1; 4 3; 6 5];

disp(x.compare(y));

However, I can't imagine that this is a common case.

Regression testing

There is currently no straightforward way to test changes in the code for bugs.

Dipole Data

Data for Fragment.dipole and Fragment.dipoleEnv is missing from generated datasets.

The data does not appear to exist in the checkpoint file.

Legacy code

Decide whether to drop support (a.k.a. remove) code for we very likely won't revisit, such as interpolation.

Dependent Mixers

There are no checks in place to ensure that multiple mixers aren't redundant, causing them to push and pull without any effect.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.