Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ownership #51

Merged
merged 24 commits into from
Jan 7, 2020
Merged

Ownership #51

merged 24 commits into from
Jan 7, 2020

Commits on Jan 2, 2020

  1. Configuration menu
    Copy the full SHA
    309a135 View commit details
    Browse the repository at this point in the history
  2. variable name from netcdf

    magnusuMET committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    aa65bdf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c29bb2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a7eee06 View commit details
    Browse the repository at this point in the history
  5. group name from netcdf

    magnusuMET committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    f74791f View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2020

  1. checkpoint

    magnusuMET committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    9a3b490 View commit details
    Browse the repository at this point in the history
  2. all tests working

    magnusuMET committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    3df6f62 View commit details
    Browse the repository at this point in the history
  3. mem tests

    magnusuMET committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    7b59509 View commit details
    Browse the repository at this point in the history
  4. dimension_iterator

    magnusuMET committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    e08165a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f2a90c5 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2020

  1. cleanup file.rs

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    905c4cd View commit details
    Browse the repository at this point in the history
  2. remove unwraps

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    0dde73f View commit details
    Browse the repository at this point in the history
  3. remove unused

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    236ab96 View commit details
    Browse the repository at this point in the history
  4. remove unwrap

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    9f34b5b View commit details
    Browse the repository at this point in the history
  5. add groups_mut iterator

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    446fc18 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f83d2b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1ef42fb View commit details
    Browse the repository at this point in the history
  8. do not lock &mut VariableMut

    One can have two VariableMut active, but one can not have
    mutable access to the same VariableMut. Ownership, and the
    lack of Clone (and using PhantomData<&mut>) for mutable accessses
    disallows sharing the variable across threads.
    
    This means a lock is not necessary when writing to a variable
    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    1e0e901 View commit details
    Browse the repository at this point in the history
  9. add missing documentation

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    e4526a3 View commit details
    Browse the repository at this point in the history
  10. avoid CString allocation

    magnusuMET committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    7c08f5b View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. Configuration menu
    Copy the full SHA
    d0ea914 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b461886 View commit details
    Browse the repository at this point in the history
  3. clippy lints

    magnusuMET committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    3c120e0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    69d3c53 View commit details
    Browse the repository at this point in the history