yt_analysis is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againSearching for commits
Mercurial supports a functional language for selecting a set of revisions.
The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.
Identifiers such as branch names must be quoted with single
or double quotes if they contain characters outside of
[._a-zA-Z0-9\x80-\xff] or if they match one of the
predefined predicates.
Prefix operators
- not x
- Changesets not in x. Short form is
! x.
Infix operators
- x::y
-
A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to
ancestors(y), if the second is left out it is equivalent todescendants(x).An alternative syntax is
x..y. - x:y
- All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
- x and y
- The intersection of changesets in x and y. Short form is
x & y. - x or y
- The union of changesets in x and y. There are two alternative
short forms:
x | yandx + y. - x - y
- Changesets in x but not in y.
Predicates
- all()
- All changesets, the same as
0:tip. - ancestor(single, single)
- Greatest common ancestor of the two changesets.
- ancestors(set)
- Changesets that are ancestors of a changeset in set.
- author(string)
- Alias for
user(string). - bookmark([name])
- The named bookmark or all bookmarks.
- branch(set)
- All changesets belonging to the branches of changesets in set.
- children(set)
- Child changesets of changesets in set.
- closed()
- Changeset is closed.
- date(interval)
- Changesets within the interval, see
hg help dates. - descendants(set)
- Changesets which are descendants of changesets in set.
- file(pattern)
- Changesets affecting files matched by pattern.
- follow()
- An alias for
::.(ancestors of the working copy's first parent). - grep(regex)
- Like
keyword(string)but accepts a regex. Usegrep(r'...')to ensure special escape characters are handled correctly. - head()
- Changeset is a named branch head.
- heads(set)
- Members of set with no children in set.
- id(string)
- Revision non-ambiguously specified by the given hex string prefix.
- keyword(string)
- Search commit message, user name, and names of changed files for string.
- limit(set, n)
- First n members of set.
- max(set)
- Changeset with highest revision number in set.
- merge()
- Changeset is a merge changeset.
- min(set)
- Changeset with lowest revision number in set.
- p1([set])
- First parent of changesets in set, or the working directory.
- p2([set])
- Second parent of changesets in set, or the working directory.
- parents([set])
- The set of all parents for all changesets in set, or the working directory.
- present(set)
- An empty set, if any revision in set isn't found; otherwise, all revisions in set.
- rev(number)
- Revision with the given numeric identifier.
- roots(set)
- Changesets with no parent changeset in set.
- tag(name)
- The specified tag by name, or all tagged revisions if no name is given.
- user(string)
- User name is string.
Commits 451–480 of 5,570
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
ff156e50f301 |
Adding a close call to FLASH _is_valid |
|
||
|
|
4fe82421186a |
Merging |
|
||
|
|
9689723b537d |
Adding a call that will initialize the FLASH conversion factor defaultdict for |
|
||
|
|
8138c1d5540d |
KnownFLASHFields was not getting filled with anything, because we were adding fields only to FLASHFieldInfo. Since KnownFLASHFields was empty, none of the field definitions in here stuck when the parameter file was actually open, and the definitions were simply overridden. This fixes this behavior so that for the common fields listed here we get the right units. |
|
||
|
|
33df4ef9f06c |
This should fix the case where you have a grid bumping up against a tile |
|
||
|
|
312dbb4afefe |
Fixing variable name issue in yt command line stuff, thanks to Matt. |
|
||
|
|
f7e39b91cc6b |
Merged in MatthewTurk/yt (pull request #54) |
|
||
|
|
e699c92663c2 |
Experimental improvements to speeding up generating ghost zones. This involves |
|
||
|
|
1558cb36d03b |
Merged in samskillman/yt-mosaicfisheye (pull request #57) |
|
||
|
|
62c106c602a9 |
fixing the l_max argument in the MosaicFisheyeCamera. |
|
||
|
|
10b680fdbbd4 |
Fixing fisheye so that it respects the radius argument. Also adding documentation and importing MosaicFisheye in yt.mods |
|
||
|
|
8d518ffed9c9 |
Removed an import that no longer exists. |
|
||
|
|
41c8861062bc |
Merging, and adding the rotation to the MosaicFisheyeCamera to mimic FisheyeCamera |
|
||
|
|
bedc1f9cdbb5 |
Implementing a MosaicFisheyeCamera that can decompose the image plane for large image creation. Uses workgroups with MPI sub-communicators. |
|
||
|
|
bc6093719736 |
Adding rotation to fisheye camera |
|
||
|
|
4afeef8b095e |
Adding yt/pmods.py, which includes the MPI_Import module from |
|
||
|
|
c7e81f654083 |
Adding get_version_stack() and get_script_contents() functions. |
|
||
|
|
911d456c3e19 |
Fixing function invocation in funcs.py for getting the hg version. |
|
||
|
|
5bed6c2bbffe |
Adding a check: if the requested fields for a validate spatial field are set to |
|
||
|
|
f23e764e92b1 |
Utilize field_ordering to transpose data if necessary |
|
||
|
|
83dd317d015e |
Remove lines that were left out after initial import from chombo's data_structures |
|
||
|
|
2f6200e6144f |
Adding restore_grid_state to the flux and isocontour calculations to allow for |
|
||
|
|
351d12b7067c |
Fixing bug that was causing parallel_objects to fail when being |
|
||
|
|
edc2f4531bb2 |
Changed one print statement from mylog.info to mylog.debug, |
|
||
|
|
3fb56a959c3b |
Merging. |
|
||
|
|
f8ef14cd6da8 |
Removing overriding of _setup_unknown_fields in GDF |
|
||
|
|
d1d15946aa78 |
Merged in samskillman/yt-gdf (pull request #52) |
|
||
|
|
57483ef32927 |
Some fixes to the gdf. Still issues with field detection. |
|
||
|
|
ba64780c99ed |
Adding velocity fields to the ValidateSpatial call in VorticitySquared. |
|
||
|
|
7310d5fcf892 |
Merge. |
|