-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix crash upon recomputing the embedding with a lower scale than prev…
…iously This fixes the crash when the hsne embedding is loaded in a scatterplot and we recompute it with a lower scale. There is still something that breaks when you go to only 1 scale, but that's not a pressing issue, as that shouldn't really be done.
- Loading branch information
1 parent
21775f6
commit 2dfcabd
Showing
5 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#pragma once | ||
|
||
#include <QUuid> | ||
|
||
/** Property label for DATA_TAG property in datasets created by this plugin */ | ||
inline QString DATA_TAG_LABEL = "HSNE_Tag"; | ||
|
||
/** | ||
/* Global static UUID for tagging data generated by this plugin, used for removal upon recomputation | ||
/* Gets instantiated in HsneAnalysisPlugin::init() | ||
*/ | ||
inline QUuid DATA_TAG; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters